2 * Copyright © 2016 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
23 * Author: Deepak M <m.deepak at intel.com>
26 #include <drm/drm_mipi_dsi.h>
27 #include <video/mipi_display.h>
30 #include "intel_display_types.h"
31 #include "intel_dsi.h"
32 #include "intel_dsi_dcs_backlight.h"
34 #define CONTROL_DISPLAY_BCTRL (1 << 5)
35 #define CONTROL_DISPLAY_DD (1 << 3)
36 #define CONTROL_DISPLAY_BL (1 << 2)
38 #define POWER_SAVE_OFF (0 << 0)
39 #define POWER_SAVE_LOW (1 << 0)
40 #define POWER_SAVE_MEDIUM (2 << 0)
41 #define POWER_SAVE_HIGH (3 << 0)
42 #define POWER_SAVE_OUTDOOR_MODE (4 << 0)
44 #define PANEL_PWM_MAX_VALUE 0xFF
46 static u32 dcs_get_backlight(struct intel_connector *connector, enum pipe unused)
48 struct intel_encoder *encoder = intel_attached_encoder(connector);
49 struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
50 struct intel_panel *panel = &connector->panel;
51 struct mipi_dsi_device *dsi_device;
54 size_t len = panel->backlight.max > U8_MAX ? 2 : 1;
56 for_each_dsi_port(port, intel_dsi->dcs_backlight_ports) {
57 dsi_device = intel_dsi->dsi_hosts[port]->device;
58 mipi_dsi_dcs_read(dsi_device, MIPI_DCS_GET_DISPLAY_BRIGHTNESS,
63 return (data[1] << 8) | data[0];
66 static void dcs_set_backlight(const struct drm_connector_state *conn_state, u32 level)
68 struct intel_dsi *intel_dsi = enc_to_intel_dsi(to_intel_encoder(conn_state->best_encoder));
69 struct intel_panel *panel = &to_intel_connector(conn_state->connector)->panel;
70 struct mipi_dsi_device *dsi_device;
73 size_t len = panel->backlight.max > U8_MAX ? 2 : 1;
74 unsigned long mode_flags;
83 for_each_dsi_port(port, intel_dsi->dcs_backlight_ports) {
84 dsi_device = intel_dsi->dsi_hosts[port]->device;
85 mode_flags = dsi_device->mode_flags;
86 dsi_device->mode_flags &= ~MIPI_DSI_MODE_LPM;
87 mipi_dsi_dcs_write(dsi_device, MIPI_DCS_SET_DISPLAY_BRIGHTNESS,
89 dsi_device->mode_flags = mode_flags;
93 static void dcs_disable_backlight(const struct drm_connector_state *conn_state, u32 level)
95 struct intel_dsi *intel_dsi = enc_to_intel_dsi(to_intel_encoder(conn_state->best_encoder));
96 struct mipi_dsi_device *dsi_device;
99 dcs_set_backlight(conn_state, 0);
101 for_each_dsi_port(port, intel_dsi->dcs_cabc_ports) {
102 u8 cabc = POWER_SAVE_OFF;
104 dsi_device = intel_dsi->dsi_hosts[port]->device;
105 mipi_dsi_dcs_write(dsi_device, MIPI_DCS_WRITE_POWER_SAVE,
106 &cabc, sizeof(cabc));
109 for_each_dsi_port(port, intel_dsi->dcs_backlight_ports) {
112 dsi_device = intel_dsi->dsi_hosts[port]->device;
114 mipi_dsi_dcs_read(dsi_device, MIPI_DCS_GET_CONTROL_DISPLAY,
115 &ctrl, sizeof(ctrl));
117 ctrl &= ~CONTROL_DISPLAY_BL;
118 ctrl &= ~CONTROL_DISPLAY_DD;
119 ctrl &= ~CONTROL_DISPLAY_BCTRL;
121 mipi_dsi_dcs_write(dsi_device, MIPI_DCS_WRITE_CONTROL_DISPLAY,
122 &ctrl, sizeof(ctrl));
126 static void dcs_enable_backlight(const struct intel_crtc_state *crtc_state,
127 const struct drm_connector_state *conn_state, u32 level)
129 struct intel_dsi *intel_dsi = enc_to_intel_dsi(to_intel_encoder(conn_state->best_encoder));
130 struct mipi_dsi_device *dsi_device;
133 for_each_dsi_port(port, intel_dsi->dcs_backlight_ports) {
136 dsi_device = intel_dsi->dsi_hosts[port]->device;
138 mipi_dsi_dcs_read(dsi_device, MIPI_DCS_GET_CONTROL_DISPLAY,
139 &ctrl, sizeof(ctrl));
141 ctrl |= CONTROL_DISPLAY_BL;
142 ctrl |= CONTROL_DISPLAY_DD;
143 ctrl |= CONTROL_DISPLAY_BCTRL;
145 mipi_dsi_dcs_write(dsi_device, MIPI_DCS_WRITE_CONTROL_DISPLAY,
146 &ctrl, sizeof(ctrl));
149 for_each_dsi_port(port, intel_dsi->dcs_cabc_ports) {
150 u8 cabc = POWER_SAVE_MEDIUM;
152 dsi_device = intel_dsi->dsi_hosts[port]->device;
153 mipi_dsi_dcs_write(dsi_device, MIPI_DCS_WRITE_POWER_SAVE,
154 &cabc, sizeof(cabc));
157 dcs_set_backlight(conn_state, level);
160 static int dcs_setup_backlight(struct intel_connector *connector,
163 struct drm_device *dev = connector->base.dev;
164 struct drm_i915_private *dev_priv = to_i915(dev);
165 struct intel_panel *panel = &connector->panel;
167 if (dev_priv->vbt.backlight.brightness_precision_bits > 8)
168 panel->backlight.max = (1 << dev_priv->vbt.backlight.brightness_precision_bits) - 1;
170 panel->backlight.max = PANEL_PWM_MAX_VALUE;
172 panel->backlight.level = panel->backlight.max;
177 static const struct intel_panel_bl_funcs dcs_bl_funcs = {
178 .setup = dcs_setup_backlight,
179 .enable = dcs_enable_backlight,
180 .disable = dcs_disable_backlight,
181 .set = dcs_set_backlight,
182 .get = dcs_get_backlight,
185 int intel_dsi_dcs_init_backlight_funcs(struct intel_connector *intel_connector)
187 struct drm_device *dev = intel_connector->base.dev;
188 struct drm_i915_private *dev_priv = to_i915(dev);
189 struct intel_encoder *encoder = intel_attached_encoder(intel_connector);
190 struct intel_panel *panel = &intel_connector->panel;
192 if (dev_priv->vbt.backlight.type != INTEL_BACKLIGHT_DSI_DCS)
195 if (drm_WARN_ON(dev, encoder->type != INTEL_OUTPUT_DSI))
198 panel->backlight.funcs = &dcs_bl_funcs;