@@ -1240,7 +1240,12 @@ static int dsicm_probe_of(struct platform_device *pdev)
ddata->in = in;
- /* TODO: ulps, backlight */
+ ddata->use_dsi_backlight = of_property_read_bool(node, "has-dsi-backlight");
+
+ of_property_read_u32(node, "resolution-x", (u32*) &ddata->timings.x_res);
+ of_property_read_u32(node, "resolution-y", (u32*) &ddata->timings.y_res);
+
+ ddata->timings.pixelclock = ddata->timings.x_res * ddata->timings.y_res * 60;
return 0;
}
@@ -1263,6 +1268,12 @@ static int dsicm_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, ddata);
ddata->pdev = pdev;
+ /* setup defaults */
+ ddata->ulps_timeout = 500;
+ ddata->timings.x_res = 864;
+ ddata->timings.y_res = 480;
+ ddata->timings.pixelclock = 864 * 480 * 60;
+
if (dev_get_platdata(dev)) {
r = dsicm_probe_pdata(pdev);
if (r)
@@ -1275,10 +1286,6 @@ static int dsicm_probe(struct platform_device *pdev)
return -ENODEV;
}
- ddata->timings.x_res = 864;
- ddata->timings.y_res = 480;
- ddata->timings.pixelclock = 864 * 480 * 60;
-
dssdev = &ddata->dssdev;
dssdev->dev = dev;
dssdev->driver = &dsicm_ops;
Introduce new DT properties, so that it's possible to use different panels with the driver. * resolution-x (default: 864) * resolution-y (default: 480) * has-dsi-backlight (default: no backlight) Signed-off-by: Sebastian Reichel <sre@kernel.org> --- drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-)