drm/omap: panel-dsi-cm: use common MIPI DCS 1.3 defines
authorSebastian Reichel <sebastian.reichel@collabora.com>
Tue, 15 Dec 2020 10:45:49 +0000 (12:45 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 15 Dec 2020 14:08:21 +0000 (16:08 +0200)
Drop local definition of common MIPI DCS 1.3 defines.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201215104657.802264-17-tomi.valkeinen@ti.com
drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c

index 4e5d445..e4e86e7 100644 (file)
@@ -28,8 +28,6 @@
 #include "../dss/omapdss.h"
 
 #define DCS_READ_NUM_ERRORS    0x05
-#define DCS_BRIGHTNESS         0x51
-#define DCS_CTRL_DISPLAY       0x53
 #define DCS_GET_ID1            0xda
 #define DCS_GET_ID2            0xdb
 #define DCS_GET_ID3            0xdc
@@ -334,7 +332,8 @@ static int dsicm_bl_update_status(struct backlight_device *dev)
 
                r = dsicm_wake_up(ddata);
                if (!r)
-                       r = dsicm_dcs_write_1(ddata, DCS_BRIGHTNESS, level);
+                       r = dsicm_dcs_write_1(
+                               ddata, MIPI_DCS_SET_DISPLAY_BRIGHTNESS, level);
 
                src->ops->dsi.bus_unlock(src);
        }
@@ -597,11 +596,11 @@ static int dsicm_power_on(struct panel_drv_data *ddata)
        if (r)
                goto err;
 
-       r = dsicm_dcs_write_1(ddata, DCS_BRIGHTNESS, 0xff);
+       r = dsicm_dcs_write_1(ddata, MIPI_DCS_SET_DISPLAY_BRIGHTNESS, 0xff);
        if (r)
                goto err;
 
-       r = dsicm_dcs_write_1(ddata, DCS_CTRL_DISPLAY,
+       r = dsicm_dcs_write_1(ddata, MIPI_DCS_WRITE_CONTROL_DISPLAY,
                        (1<<2) | (1<<5));       /* BL | BCTRL */
        if (r)
                goto err;