dev: gcdb: display: extend the fps values for truly video mode panels

Update the dynamic fps structure for truly 1080p/WUXGA video mode
panels to support all the values between 48 and 60. In kernel,
display HAL might request for any fps between minimum fps and
maximum fps based on use-case requirement.

Change-Id: I0cf6de57305a53b99286b3fe638ed433efa94dc4
diff --git a/dev/gcdb/display/include/panel_truly_1080p_video.h b/dev/gcdb/display/include/panel_truly_1080p_video.h
index 46417c6..d535f68 100755
--- a/dev/gcdb/display/include/panel_truly_1080p_video.h
+++ b/dev/gcdb/display/include/panel_truly_1080p_video.h
@@ -302,7 +302,7 @@
 /* Dynamic fps supported frequencies by panel                                */
 /*---------------------------------------------------------------------------*/
 static const struct dfps_panel_info truly_1080p_video_dfps = {
-	1, 10, {48, 49, 50, 51, 52, 54, 56, 57, 58, 60}
+	1, 13, {48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60}
 };
 
 /*---------------------------------------------------------------------------*/
diff --git a/dev/gcdb/display/include/panel_truly_wuxga_video.h b/dev/gcdb/display/include/panel_truly_wuxga_video.h
index d96d432..072ffeb 100644
--- a/dev/gcdb/display/include/panel_truly_wuxga_video.h
+++ b/dev/gcdb/display/include/panel_truly_wuxga_video.h
@@ -143,7 +143,7 @@
 /* Dynamic fps supported frequencies by panel                                */
 /*---------------------------------------------------------------------------*/
 static const struct dfps_panel_info truly_wuxga_video_dfps = {
-        1, 10, {48, 49, 50, 51, 52, 54, 56, 57, 58, 60}
+        1, 13, {48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60}
 };