2013-08-27 15:12:20 +03:00
|
|
|
/*
|
|
|
|
* Copyright © 2013 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Author: Jani Nikula <jani.nikula@intel.com>
|
|
|
|
*/
|
|
|
|
|
2023-09-20 21:56:10 +02:00
|
|
|
#include <linux/dmi.h>
|
2019-04-05 14:00:06 +03:00
|
|
|
#include <linux/slab.h>
|
|
|
|
|
2015-01-22 16:50:32 -08:00
|
|
|
#include <drm/drm_atomic_helper.h>
|
2013-08-27 15:12:20 +03:00
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
#include <drm/drm_edid.h>
|
2015-01-16 14:27:23 +02:00
|
|
|
#include <drm/drm_mipi_dsi.h>
|
2025-05-12 17:56:57 +03:00
|
|
|
#include <drm/drm_print.h>
|
2024-08-26 19:31:16 +03:00
|
|
|
#include <drm/drm_probe_helper.h>
|
2019-04-05 14:00:06 +03:00
|
|
|
|
2022-11-09 17:35:22 +02:00
|
|
|
#include "i915_reg.h"
|
2025-05-12 17:56:57 +03:00
|
|
|
#include "i915_utils.h"
|
2019-04-29 15:53:31 +03:00
|
|
|
#include "intel_atomic.h"
|
2021-08-25 14:06:50 +03:00
|
|
|
#include "intel_backlight.h"
|
2019-04-05 14:00:06 +03:00
|
|
|
#include "intel_connector.h"
|
2021-04-27 15:03:15 +03:00
|
|
|
#include "intel_crtc.h"
|
2021-04-30 17:39:44 +03:00
|
|
|
#include "intel_de.h"
|
2025-06-06 13:22:56 +03:00
|
|
|
#include "intel_display_regs.h"
|
2019-08-06 14:39:33 +03:00
|
|
|
#include "intel_display_types.h"
|
2013-08-27 15:12:20 +03:00
|
|
|
#include "intel_dsi.h"
|
2021-11-22 13:15:01 +02:00
|
|
|
#include "intel_dsi_vbt.h"
|
2019-04-29 15:29:24 +03:00
|
|
|
#include "intel_fifo_underrun.h"
|
2019-04-05 14:00:14 +03:00
|
|
|
#include "intel_panel.h"
|
2024-10-16 17:31:33 +03:00
|
|
|
#include "intel_pfit.h"
|
2021-02-05 16:48:42 +02:00
|
|
|
#include "skl_scaler.h"
|
2021-11-22 13:15:03 +02:00
|
|
|
#include "vlv_dsi.h"
|
2021-11-22 13:15:02 +02:00
|
|
|
#include "vlv_dsi_pll.h"
|
2022-02-18 00:40:22 +02:00
|
|
|
#include "vlv_dsi_regs.h"
|
2025-05-12 17:56:56 +03:00
|
|
|
#include "vlv_sideband.h"
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2016-04-19 13:48:14 +05:30
|
|
|
/* return pixels in terms of txbyteclkhs */
|
|
|
|
static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count,
|
|
|
|
u16 burst_mode_ratio)
|
|
|
|
{
|
|
|
|
return DIV_ROUND_UP(DIV_ROUND_UP(pixels * bpp * burst_mode_ratio,
|
|
|
|
8 * 100), lane_count);
|
|
|
|
}
|
|
|
|
|
2025-01-20 13:45:16 +05:30
|
|
|
/* return pixels equivalent to txbyteclkhs */
|
2016-04-19 13:48:13 +05:30
|
|
|
static u16 pixels_from_txbyteclkhs(u16 clk_hs, int bpp, int lane_count,
|
|
|
|
u16 burst_mode_ratio)
|
|
|
|
{
|
|
|
|
return DIV_ROUND_UP((clk_hs * lane_count * 8 * 100),
|
|
|
|
(bpp * burst_mode_ratio));
|
|
|
|
}
|
|
|
|
|
2024-11-07 00:09:04 +02:00
|
|
|
static enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt)
|
2016-04-07 14:36:06 +05:30
|
|
|
{
|
|
|
|
switch (fmt) {
|
|
|
|
case VID_MODE_FORMAT_RGB888:
|
|
|
|
return MIPI_DSI_FMT_RGB888;
|
|
|
|
case VID_MODE_FORMAT_RGB666:
|
|
|
|
return MIPI_DSI_FMT_RGB666;
|
|
|
|
case VID_MODE_FORMAT_RGB666_PACKED:
|
|
|
|
return MIPI_DSI_FMT_RGB666_PACKED;
|
|
|
|
case VID_MODE_FORMAT_RGB565:
|
|
|
|
return MIPI_DSI_FMT_RGB565;
|
|
|
|
default:
|
|
|
|
MISSING_CASE(fmt);
|
|
|
|
return MIPI_DSI_FMT_RGB666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 16:25:08 +03:00
|
|
|
void vlv_dsi_wait_for_fifo_empty(struct intel_dsi *intel_dsi, enum port port)
|
2015-01-16 14:27:18 +02:00
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(&intel_dsi->base);
|
2015-01-16 14:27:18 +02:00
|
|
|
u32 mask;
|
|
|
|
|
|
|
|
mask = LP_CTRL_FIFO_EMPTY | HS_CTRL_FIFO_EMPTY |
|
|
|
|
LP_DATA_FIFO_EMPTY | HS_DATA_FIFO_EMPTY;
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_GEN_FIFO_STAT(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
mask, 100))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "DPI FIFOs are not empty\n");
|
2015-01-16 14:27:18 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
static void write_data(struct intel_display *display,
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 15:33:26 +02:00
|
|
|
i915_reg_t reg,
|
2015-01-16 14:27:23 +02:00
|
|
|
const u8 *data, u32 len)
|
|
|
|
{
|
|
|
|
u32 i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i += 4) {
|
|
|
|
u32 val = 0;
|
|
|
|
|
|
|
|
for (j = 0; j < min_t(u32, len - i, 4); j++)
|
|
|
|
val |= *data++ << 8 * j;
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, reg, val);
|
2015-01-16 14:27:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
static void read_data(struct intel_display *display,
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 15:33:26 +02:00
|
|
|
i915_reg_t reg,
|
2015-01-16 14:27:23 +02:00
|
|
|
u8 *data, u32 len)
|
|
|
|
{
|
|
|
|
u32 i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i += 4) {
|
2024-04-19 13:04:06 +03:00
|
|
|
u32 val = intel_de_read(display, reg);
|
2015-01-16 14:27:23 +02:00
|
|
|
|
|
|
|
for (j = 0; j < min_t(u32, len - i, 4); j++)
|
|
|
|
*data++ = val >> 8 * j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t intel_dsi_host_transfer(struct mipi_dsi_host *host,
|
|
|
|
const struct mipi_dsi_msg *msg)
|
|
|
|
{
|
|
|
|
struct intel_dsi_host *intel_dsi_host = to_intel_dsi_host(host);
|
2024-04-19 13:04:05 +03:00
|
|
|
struct intel_dsi *intel_dsi = intel_dsi_host->intel_dsi;
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(&intel_dsi->base);
|
2015-01-16 14:27:23 +02:00
|
|
|
enum port port = intel_dsi_host->port;
|
|
|
|
struct mipi_dsi_packet packet;
|
|
|
|
ssize_t ret;
|
2023-05-26 19:37:56 +03:00
|
|
|
const u8 *header;
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 15:33:26 +02:00
|
|
|
i915_reg_t data_reg, ctrl_reg;
|
|
|
|
u32 data_mask, ctrl_mask;
|
2015-01-16 14:27:23 +02:00
|
|
|
|
|
|
|
ret = mipi_dsi_create_packet(&packet, msg);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
header = packet.header;
|
|
|
|
|
|
|
|
if (msg->flags & MIPI_DSI_MSG_USE_LPM) {
|
2024-04-19 13:04:06 +03:00
|
|
|
data_reg = MIPI_LP_GEN_DATA(display, port);
|
2015-01-16 14:27:23 +02:00
|
|
|
data_mask = LP_DATA_FIFO_FULL;
|
2024-04-19 13:04:06 +03:00
|
|
|
ctrl_reg = MIPI_LP_GEN_CTRL(display, port);
|
2015-01-16 14:27:23 +02:00
|
|
|
ctrl_mask = LP_CTRL_FIFO_FULL;
|
|
|
|
} else {
|
2024-04-19 13:04:06 +03:00
|
|
|
data_reg = MIPI_HS_GEN_DATA(display, port);
|
2015-01-16 14:27:23 +02:00
|
|
|
data_mask = HS_DATA_FIFO_FULL;
|
2024-04-19 13:04:06 +03:00
|
|
|
ctrl_reg = MIPI_HS_GEN_CTRL(display, port);
|
2015-01-16 14:27:23 +02:00
|
|
|
ctrl_mask = HS_CTRL_FIFO_FULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* note: this is never true for reads */
|
|
|
|
if (packet.payload_length) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_GEN_FIFO_STAT(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
data_mask, 50))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Timeout waiting for HS/LP DATA FIFO !full\n");
|
2015-01-16 14:27:23 +02:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
write_data(display, data_reg, packet.payload,
|
2015-01-16 14:27:23 +02:00
|
|
|
packet.payload_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg->rx_len) {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_INTR_STAT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
GEN_READ_DATA_AVAIL);
|
2015-01-16 14:27:23 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_GEN_FIFO_STAT(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
ctrl_mask, 50)) {
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Timeout waiting for HS/LP CTRL FIFO !full\n");
|
2015-01-16 14:27:23 +02:00
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, ctrl_reg,
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
header[2] << 16 | header[1] << 8 | header[0]);
|
2015-01-16 14:27:23 +02:00
|
|
|
|
|
|
|
/* ->rx_len is set only for reads */
|
|
|
|
if (msg->rx_len) {
|
|
|
|
data_mask = GEN_READ_DATA_AVAIL;
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_INTR_STAT(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
data_mask, 50))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Timeout waiting for read data.\n");
|
2015-01-16 14:27:23 +02:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
read_data(display, data_reg, msg->rx_buf, msg->rx_len);
|
2015-01-16 14:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: fix for reads and writes */
|
|
|
|
return 4 + packet.payload_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int intel_dsi_host_attach(struct mipi_dsi_host *host,
|
|
|
|
struct mipi_dsi_device *dsi)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int intel_dsi_host_detach(struct mipi_dsi_host *host,
|
|
|
|
struct mipi_dsi_device *dsi)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct mipi_dsi_host_ops intel_dsi_host_ops = {
|
|
|
|
.attach = intel_dsi_host_attach,
|
|
|
|
.detach = intel_dsi_host_detach,
|
|
|
|
.transfer = intel_dsi_host_transfer,
|
|
|
|
};
|
|
|
|
|
2015-01-16 14:27:26 +02:00
|
|
|
/*
|
|
|
|
* send a video mode command
|
|
|
|
*
|
|
|
|
* XXX: commands with data in MIPI_DPI_DATA?
|
|
|
|
*/
|
|
|
|
static int dpi_send_cmd(struct intel_dsi *intel_dsi, u32 cmd, bool hs,
|
|
|
|
enum port port)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(&intel_dsi->base);
|
2015-01-16 14:27:26 +02:00
|
|
|
u32 mask;
|
|
|
|
|
|
|
|
/* XXX: pipe, hs */
|
|
|
|
if (hs)
|
|
|
|
cmd &= ~DPI_LP_MODE;
|
|
|
|
else
|
|
|
|
cmd |= DPI_LP_MODE;
|
|
|
|
|
|
|
|
/* clear bit */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_INTR_STAT(display, port), SPL_PKT_SENT_INTERRUPT);
|
2015-01-16 14:27:26 +02:00
|
|
|
|
|
|
|
/* XXX: old code skips write if control unchanged */
|
2024-04-19 13:04:06 +03:00
|
|
|
if (cmd == intel_de_read(display, MIPI_DPI_CONTROL(display, port)))
|
|
|
|
drm_dbg_kms(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Same special packet %02x twice in a row.\n", cmd);
|
2015-01-16 14:27:26 +02:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DPI_CONTROL(display, port), cmd);
|
2015-01-16 14:27:26 +02:00
|
|
|
|
|
|
|
mask = SPL_PKT_SENT_INTERRUPT;
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_INTR_STAT(display, port), mask, 100))
|
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Video mode command 0x%08x send failed.\n", cmd);
|
2015-01-16 14:27:26 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
static void band_gap_reset(struct intel_display *display)
|
2013-08-27 15:12:24 +03:00
|
|
|
{
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_get(display->drm);
|
2025-03-21 12:52:45 +02:00
|
|
|
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_write(display->drm, 0x08, 0x0001);
|
|
|
|
vlv_flisdsi_write(display->drm, 0x0F, 0x0005);
|
|
|
|
vlv_flisdsi_write(display->drm, 0x0F, 0x0025);
|
2013-12-10 12:14:55 +05:30
|
|
|
udelay(150);
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_write(display->drm, 0x0F, 0x0000);
|
|
|
|
vlv_flisdsi_write(display->drm, 0x08, 0x0000);
|
2013-08-27 15:12:24 +03:00
|
|
|
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_put(display->drm);
|
2013-08-27 15:12:24 +03:00
|
|
|
}
|
|
|
|
|
2019-01-15 15:08:00 -05:00
|
|
|
static int intel_dsi_compute_config(struct intel_encoder *encoder,
|
|
|
|
struct intel_crtc_state *pipe_config,
|
|
|
|
struct drm_connector_state *conn_state)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2024-03-07 17:18:07 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2013-08-27 15:12:20 +03:00
|
|
|
struct intel_connector *intel_connector = intel_dsi->attached_connector;
|
2019-10-31 12:26:02 +01:00
|
|
|
struct drm_display_mode *adjusted_mode = &pipe_config->hw.adjusted_mode;
|
2016-04-12 22:14:35 +03:00
|
|
|
int ret;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2023-04-27 18:26:00 +05:30
|
|
|
pipe_config->sink_format = INTEL_OUTPUT_FORMAT_RGB;
|
2018-10-12 11:53:07 +05:30
|
|
|
pipe_config->output_format = INTEL_OUTPUT_FORMAT_RGB;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2021-09-23 23:01:09 +03:00
|
|
|
ret = intel_panel_compute_config(intel_connector, adjusted_mode);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-02-26 12:01:07 +02:00
|
|
|
ret = intel_pfit_compute_config(pipe_config, conn_state);
|
2021-09-23 23:01:09 +03:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2016-04-12 22:14:37 +03:00
|
|
|
|
2018-05-24 15:54:03 +03:00
|
|
|
if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
2019-01-15 15:08:00 -05:00
|
|
|
return -EINVAL;
|
2018-05-24 15:54:03 +03:00
|
|
|
|
2014-07-30 20:32:37 +05:30
|
|
|
/* DSI uses short packets for sync events, so clear mode flags for DSI */
|
|
|
|
adjusted_mode->flags = 0;
|
|
|
|
|
2018-12-01 12:31:45 +01:00
|
|
|
if (intel_dsi->pixel_format == MIPI_DSI_FMT_RGB888)
|
|
|
|
pipe_config->pipe_bpp = 24;
|
|
|
|
else
|
|
|
|
pipe_config->pipe_bpp = 18;
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2017-09-25 19:26:01 +05:30
|
|
|
/* Enable Frame time stamp based scanline reporting */
|
2020-04-29 13:39:04 +03:00
|
|
|
pipe_config->mode_flags |=
|
2017-09-25 19:26:01 +05:30
|
|
|
I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP;
|
|
|
|
|
2016-03-18 17:05:42 +02:00
|
|
|
/* Dual link goes to DSI transcoder A. */
|
|
|
|
if (intel_dsi->ports == BIT(PORT_C))
|
|
|
|
pipe_config->cpu_transcoder = TRANSCODER_DSI_C;
|
|
|
|
else
|
|
|
|
pipe_config->cpu_transcoder = TRANSCODER_DSI_A;
|
|
|
|
|
2018-07-05 16:25:08 +03:00
|
|
|
ret = bxt_dsi_pll_compute(encoder, pipe_config);
|
|
|
|
if (ret)
|
2019-01-15 15:08:00 -05:00
|
|
|
return -EINVAL;
|
2018-07-05 16:25:08 +03:00
|
|
|
} else {
|
|
|
|
ret = vlv_dsi_pll_compute(encoder, pipe_config);
|
|
|
|
if (ret)
|
2019-01-15 15:08:00 -05:00
|
|
|
return -EINVAL;
|
2018-07-05 16:25:08 +03:00
|
|
|
}
|
2016-04-12 22:14:35 +03:00
|
|
|
|
2016-04-12 22:14:34 +03:00
|
|
|
pipe_config->clock_set = true;
|
|
|
|
|
2019-01-15 15:08:00 -05:00
|
|
|
return 0;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2017-06-13 13:18:15 +05:30
|
|
|
static bool glk_dsi_enable_io(struct intel_encoder *encoder)
|
2017-03-01 12:51:33 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-03-01 12:51:33 +05:30
|
|
|
enum port port;
|
2017-06-13 13:18:15 +05:30
|
|
|
bool cold_boot = false;
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Set the MIPI mode
|
|
|
|
* If MIPI_Mode is off, then writing to LP_Wake bit is not reflecting.
|
|
|
|
* Power ON MIPI IO first and then write into IO reset and LP wake bits
|
|
|
|
*/
|
2022-12-19 10:24:28 +01:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port), 0, GLK_MIPIIO_ENABLE);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Put the IO into reset */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, PORT_A), GLK_MIPIIO_RESET_RELEASED, 0);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Program LP Wake */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
u32 tmp = intel_de_read(display, MIPI_DEVICE_READY(display, port));
|
|
|
|
|
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
GLK_LP_WAKE, (tmp & DEVICE_READY) ? GLK_LP_WAKE : 0);
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for Pwr ACK */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_MIPIIO_PORT_POWERED, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "MIPIO port is powergated\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
2017-06-13 13:18:15 +05:30
|
|
|
|
|
|
|
/* Check for cold boot scenario */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2019-03-25 14:49:39 -07:00
|
|
|
cold_boot |=
|
2024-04-19 13:04:06 +03:00
|
|
|
!(intel_de_read(display, MIPI_DEVICE_READY(display, port)) & DEVICE_READY);
|
2017-06-13 13:18:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return cold_boot;
|
2017-06-13 13:18:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void glk_dsi_device_ready(struct intel_encoder *encoder)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-06-13 13:18:14 +05:30
|
|
|
enum port port;
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Wait for MIPI PHY status bit to set */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_PHY_STATUS_PORT_READY, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "PHY is not ON\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Get IO out of reset */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, PORT_A), 0, GLK_MIPIIO_RESET_RELEASED);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Get IO out of Low power state*/
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (!(intel_de_read(display, MIPI_DEVICE_READY(display, port)) & DEVICE_READY)) {
|
|
|
|
intel_de_rmw(display, MIPI_DEVICE_READY(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
ULPS_STATE_MASK, DEVICE_READY);
|
2017-03-01 12:51:33 +05:30
|
|
|
usleep_range(10, 15);
|
2017-06-13 13:18:15 +05:30
|
|
|
} else {
|
|
|
|
/* Enter ULPS */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_DEVICE_READY(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
ULPS_STATE_MASK, ULPS_STATE_ENTER | DEVICE_READY);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
2017-06-13 13:18:15 +05:30
|
|
|
/* Wait for ULPS active */
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_ULPS_NOT_ACTIVE, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "ULPS not active\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
|
2017-06-13 13:18:15 +05:30
|
|
|
/* Exit ULPS */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_DEVICE_READY(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
ULPS_STATE_MASK, ULPS_STATE_EXIT | DEVICE_READY);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
2017-06-13 13:18:15 +05:30
|
|
|
/* Enter Normal Mode */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_DEVICE_READY(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
ULPS_STATE_MASK,
|
|
|
|
ULPS_STATE_NORMAL_OPERATION | DEVICE_READY);
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port), GLK_LP_WAKE, 0);
|
2017-06-13 13:18:15 +05:30
|
|
|
}
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for Stop state */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_DATA_LANE_STOP_STATE, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"Date lane not in STOP state\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for AFE LATCH */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_set(display, BXT_MIPI_PORT_CTRL(port),
|
2019-08-15 18:23:43 -07:00
|
|
|
AFE_LATCHOUT, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"D-PHY not entering LP-11 state\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-01 19:41:42 +05:30
|
|
|
static void bxt_dsi_device_ready(struct intel_encoder *encoder)
|
2014-12-04 10:58:47 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2014-12-05 14:09:28 +05:30
|
|
|
enum port port;
|
2015-09-01 19:41:42 +05:30
|
|
|
u32 val;
|
2014-12-04 10:58:47 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2014-12-05 14:13:41 +05:30
|
|
|
|
2017-02-08 16:20:54 +05:30
|
|
|
/* Enable MIPI PHY transparent latch */
|
2014-12-05 14:09:28 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, BXT_MIPI_PORT_CTRL(port), 0, LP_OUTPUT_HOLD);
|
2015-09-01 19:41:42 +05:30
|
|
|
usleep_range(2000, 2500);
|
2017-02-08 16:20:54 +05:30
|
|
|
}
|
2015-09-01 19:41:42 +05:30
|
|
|
|
2017-02-08 16:20:54 +05:30
|
|
|
/* Clear ULPS and set device ready */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
val = intel_de_read(display, MIPI_DEVICE_READY(display, port));
|
2015-09-01 19:41:42 +05:30
|
|
|
val &= ~ULPS_STATE_MASK;
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port), val);
|
2017-02-08 16:20:54 +05:30
|
|
|
usleep_range(2000, 2500);
|
2015-09-01 19:41:42 +05:30
|
|
|
val |= DEVICE_READY;
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port), val);
|
2014-12-05 14:09:28 +05:30
|
|
|
}
|
2014-12-04 10:58:47 +05:30
|
|
|
}
|
|
|
|
|
2015-09-01 19:41:42 +05:30
|
|
|
static void vlv_dsi_device_ready(struct intel_encoder *encoder)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2014-12-05 14:24:21 +05:30
|
|
|
enum port port;
|
2013-12-11 17:52:05 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_get(display->drm);
|
2014-04-09 13:59:30 +05:30
|
|
|
/* program rcomp for compliance, reduce from 50 ohms to 45 ohms
|
|
|
|
* needed everytime after power gate */
|
2025-05-12 17:56:57 +03:00
|
|
|
vlv_flisdsi_write(display->drm, 0x04, 0x0004);
|
|
|
|
vlv_flisdsi_put(display->drm);
|
2014-04-09 13:59:30 +05:30
|
|
|
|
|
|
|
/* bandgap reset is needed after everytime we do power gate */
|
2025-03-21 12:52:45 +02:00
|
|
|
band_gap_reset(display);
|
2014-04-09 13:59:30 +05:30
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2014-07-03 16:35:41 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
ULPS_STATE_ENTER);
|
2014-12-05 14:24:21 +05:30
|
|
|
usleep_range(2500, 3000);
|
2014-07-03 16:35:41 +05:30
|
|
|
|
2014-12-07 16:13:54 +05:30
|
|
|
/* Enable MIPI PHY transparent latch
|
|
|
|
* Common bit for both MIPI Port A & MIPI Port C
|
|
|
|
* No similar bit in MIPI Port C reg
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, VLV_MIPI_PORT_CTRL(PORT_A), 0, LP_OUTPUT_HOLD);
|
2014-12-05 14:24:21 +05:30
|
|
|
usleep_range(1000, 1500);
|
2014-07-03 16:35:41 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
ULPS_STATE_EXIT);
|
2014-12-05 14:24:21 +05:30
|
|
|
usleep_range(2500, 3000);
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
DEVICE_READY);
|
2014-12-05 14:24:21 +05:30
|
|
|
usleep_range(2500, 3000);
|
|
|
|
}
|
2013-12-11 17:52:05 +05:30
|
|
|
}
|
|
|
|
|
2015-09-01 19:41:42 +05:30
|
|
|
static void intel_dsi_device_ready(struct intel_encoder *encoder)
|
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2015-09-01 19:41:42 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake)
|
2017-03-01 12:51:33 +05:30
|
|
|
glk_dsi_device_ready(encoder);
|
2025-03-21 12:52:45 +02:00
|
|
|
else if (display->platform.geminilake || display->platform.broxton)
|
2018-07-05 16:25:09 +03:00
|
|
|
bxt_dsi_device_ready(encoder);
|
|
|
|
else
|
|
|
|
vlv_dsi_device_ready(encoder);
|
2015-09-01 19:41:42 +05:30
|
|
|
}
|
|
|
|
|
2017-03-01 12:51:33 +05:30
|
|
|
static void glk_dsi_enter_low_power_mode(struct intel_encoder *encoder)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-03-01 12:51:33 +05:30
|
|
|
enum port port;
|
|
|
|
|
|
|
|
/* Enter ULPS */
|
2022-12-19 10:24:28 +01:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_DEVICE_READY(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
ULPS_STATE_MASK, ULPS_STATE_ENTER | DEVICE_READY);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Wait for MIPI PHY status bit to unset */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_PHY_STATUS_PORT_READY, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "PHY is not turning OFF\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for Pwr ACK bit to unset */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_MIPIIO_PORT_POWERED, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm,
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
"MIPI IO Port is not powergated\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void glk_dsi_disable_mipi_io(struct intel_encoder *encoder)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-03-01 12:51:33 +05:30
|
|
|
enum port port;
|
|
|
|
|
|
|
|
/* Put the IO into reset */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, PORT_A), GLK_MIPIIO_RESET_RELEASED, 0);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
|
|
|
/* Wait for MIPI PHY status bit to unset */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_wait_for_clear(display, MIPI_CTRL(display, port),
|
2019-08-15 18:23:43 -07:00
|
|
|
GLK_PHY_STATUS_PORT_READY, 20))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "PHY is not turning OFF\n");
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear MIPI mode */
|
2022-12-19 10:24:28 +01:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port), GLK_MIPIIO_ENABLE, 0);
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void glk_dsi_clear_device_ready(struct intel_encoder *encoder)
|
|
|
|
{
|
|
|
|
glk_dsi_enter_low_power_mode(encoder);
|
|
|
|
glk_dsi_disable_mipi_io(encoder);
|
|
|
|
}
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
static i915_reg_t port_ctrl_reg(struct intel_display *display, enum port port)
|
2023-11-01 13:42:12 +02:00
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
return display->platform.geminilake || display->platform.broxton ?
|
2024-04-19 13:04:04 +03:00
|
|
|
BXT_MIPI_PORT_CTRL(port) : VLV_MIPI_PORT_CTRL(port);
|
2023-11-01 13:42:12 +02:00
|
|
|
}
|
|
|
|
|
2017-03-01 12:51:33 +05:30
|
|
|
static void vlv_dsi_clear_device_ready(struct intel_encoder *encoder)
|
2017-02-28 11:26:19 +02:00
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-02-28 11:26:19 +02:00
|
|
|
enum port port;
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2017-02-28 11:26:19 +02:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
|
|
|
/* Common bit for both MIPI Port A & MIPI Port C on VLV/CHV */
|
2025-03-21 12:52:45 +02:00
|
|
|
i915_reg_t port_ctrl = display->platform.broxton ?
|
2024-04-19 13:04:04 +03:00
|
|
|
BXT_MIPI_PORT_CTRL(port) : VLV_MIPI_PORT_CTRL(PORT_A);
|
2017-02-28 11:26:19 +02:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
DEVICE_READY | ULPS_STATE_ENTER);
|
2017-02-28 11:26:19 +02:00
|
|
|
usleep_range(2000, 2500);
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
DEVICE_READY | ULPS_STATE_EXIT);
|
2017-02-28 11:26:19 +02:00
|
|
|
usleep_range(2000, 2500);
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
DEVICE_READY | ULPS_STATE_ENTER);
|
2017-02-28 11:26:19 +02:00
|
|
|
usleep_range(2000, 2500);
|
|
|
|
|
2017-02-28 11:26:21 +02:00
|
|
|
/*
|
|
|
|
* On VLV/CHV, wait till Clock lanes are in LP-00 state for MIPI
|
|
|
|
* Port A only. MIPI Port C has no similar bit for checking.
|
2017-02-28 11:26:19 +02:00
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if ((display->platform.broxton || port == PORT_A) &&
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_wait_for_clear(display, port_ctrl,
|
2019-08-15 18:23:43 -07:00
|
|
|
AFE_LATCHOUT, 30))
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_err(display->drm, "DSI LP not going Low\n");
|
2017-02-28 11:26:19 +02:00
|
|
|
|
|
|
|
/* Disable MIPI PHY transparent latch */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, port_ctrl, LP_OUTPUT_HOLD, 0);
|
2017-02-28 11:26:19 +02:00
|
|
|
usleep_range(1000, 1500);
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port), 0x00);
|
2017-02-28 11:26:19 +02:00
|
|
|
usleep_range(2000, 2500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 22:51:15 +02:00
|
|
|
static void intel_dsi_port_enable(struct intel_encoder *encoder,
|
|
|
|
const struct intel_crtc_state *crtc_state)
|
2015-09-01 19:41:42 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-10-31 12:26:03 +01:00
|
|
|
struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2015-09-01 19:41:42 +05:30
|
|
|
enum port port;
|
|
|
|
|
|
|
|
if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK) {
|
2022-12-19 10:24:27 +01:00
|
|
|
u32 temp = intel_dsi->pixel_overlap;
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2022-12-19 10:24:27 +01:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port),
|
2022-12-19 10:24:27 +01:00
|
|
|
BXT_PIXEL_OVERLAP_CNT_MASK,
|
|
|
|
temp << BXT_PIXEL_OVERLAP_CNT_SHIFT);
|
2017-02-14 18:46:16 +05:30
|
|
|
} else {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, VLV_CHICKEN_3,
|
2022-12-19 10:24:27 +01:00
|
|
|
PIXEL_OVERLAP_CNT_MASK,
|
|
|
|
temp << PIXEL_OVERLAP_CNT_SHIFT);
|
2017-02-14 18:46:16 +05:30
|
|
|
}
|
2015-09-01 19:41:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2025-03-21 12:52:45 +02:00
|
|
|
i915_reg_t port_ctrl = port_ctrl_reg(display, port);
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 15:33:26 +02:00
|
|
|
u32 temp;
|
2015-09-01 19:41:42 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
temp = intel_de_read(display, port_ctrl);
|
2015-09-01 19:41:42 +05:30
|
|
|
|
|
|
|
temp &= ~LANE_CONFIGURATION_MASK;
|
|
|
|
temp &= ~DUAL_LINK_MODE_MASK;
|
|
|
|
|
2016-03-18 17:05:43 +02:00
|
|
|
if (intel_dsi->ports == (BIT(PORT_A) | BIT(PORT_C))) {
|
2015-09-01 19:41:42 +05:30
|
|
|
temp |= (intel_dsi->dual_link - 1)
|
|
|
|
<< DUAL_LINK_MODE_SHIFT;
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.broxton)
|
2016-11-21 14:24:06 -08:00
|
|
|
temp |= LANE_CONFIGURATION_DUAL_LINK_A;
|
|
|
|
else
|
2017-10-31 22:51:15 +02:00
|
|
|
temp |= crtc->pipe ?
|
2015-09-01 19:41:42 +05:30
|
|
|
LANE_CONFIGURATION_DUAL_LINK_B :
|
|
|
|
LANE_CONFIGURATION_DUAL_LINK_A;
|
|
|
|
}
|
2018-12-01 12:31:46 +01:00
|
|
|
|
|
|
|
if (intel_dsi->pixel_format != MIPI_DSI_FMT_RGB888)
|
|
|
|
temp |= DITHERING_ENABLE;
|
|
|
|
|
2015-09-01 19:41:42 +05:30
|
|
|
/* assert ip_tg_enable signal */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, port_ctrl, temp | DPI_ENABLE);
|
|
|
|
intel_de_posting_read(display, port_ctrl);
|
2015-09-01 19:41:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_dsi_port_disable(struct intel_encoder *encoder)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2015-09-01 19:41:42 +05:30
|
|
|
enum port port;
|
|
|
|
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2025-03-21 12:52:45 +02:00
|
|
|
i915_reg_t port_ctrl = port_ctrl_reg(display, port);
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 15:33:26 +02:00
|
|
|
|
2015-09-01 19:41:42 +05:30
|
|
|
/* de-assert ip_tg_enable signal */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, port_ctrl, DPI_ENABLE, 0);
|
|
|
|
intel_de_posting_read(display, port_ctrl);
|
2015-09-01 19:41:42 +05:30
|
|
|
}
|
|
|
|
}
|
2024-04-19 13:04:05 +03:00
|
|
|
|
|
|
|
static void intel_dsi_prepare(struct intel_encoder *encoder,
|
2017-08-18 16:49:58 +03:00
|
|
|
const struct intel_crtc_state *pipe_config);
|
2017-02-28 11:26:18 +02:00
|
|
|
static void intel_dsi_unprepare(struct intel_encoder *encoder);
|
2015-11-27 12:21:44 +02:00
|
|
|
|
2017-03-01 15:14:57 +02:00
|
|
|
/*
|
|
|
|
* Panel enable/disable sequences from the VBT spec.
|
|
|
|
*
|
|
|
|
* Note the spec has AssertReset / DeassertReset swapped from their
|
|
|
|
* usual naming. We use the normal names to avoid confusion (so below
|
|
|
|
* they are swapped compared to the spec).
|
|
|
|
*
|
|
|
|
* Steps starting with MIPI refer to VBT sequences, note that for v2
|
|
|
|
* VBTs several steps which have a VBT in v2 are expected to be handled
|
|
|
|
* directly by the driver, by directly driving gpios for example.
|
|
|
|
*
|
|
|
|
* v2 video mode seq v3 video mode seq command mode seq
|
|
|
|
* - power on - MIPIPanelPowerOn - power on
|
|
|
|
* - wait t1+t2 - wait t1+t2
|
|
|
|
* - MIPIDeassertResetPin - MIPIDeassertResetPin - MIPIDeassertResetPin
|
|
|
|
* - io lines to lp-11 - io lines to lp-11 - io lines to lp-11
|
|
|
|
* - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds - MIPISendInitialDcsCmds
|
|
|
|
* - MIPITearOn
|
|
|
|
* - MIPIDisplayOn
|
|
|
|
* - turn on DPI - turn on DPI - set pipe to dsr mode
|
|
|
|
* - MIPIDisplayOn - MIPIDisplayOn
|
|
|
|
* - wait t5 - wait t5
|
|
|
|
* - backlight on - MIPIBacklightOn - backlight on
|
|
|
|
* ... ... ... issue mem cmds ...
|
|
|
|
* - backlight off - MIPIBacklightOff - backlight off
|
|
|
|
* - wait t6 - wait t6
|
|
|
|
* - MIPIDisplayOff
|
|
|
|
* - turn off DPI - turn off DPI - disable pipe dsr mode
|
|
|
|
* - MIPITearOff
|
|
|
|
* - MIPIDisplayOff - MIPIDisplayOff
|
|
|
|
* - io lines to lp-00 - io lines to lp-00 - io lines to lp-00
|
|
|
|
* - MIPIAssertResetPin - MIPIAssertResetPin - MIPIAssertResetPin
|
|
|
|
* - wait t3 - wait t3
|
|
|
|
* - power off - MIPIPanelPowerOff - power off
|
|
|
|
* - wait t4 - wait t4
|
|
|
|
*/
|
|
|
|
|
2018-10-16 15:41:34 +03:00
|
|
|
/*
|
|
|
|
* DSI port enable has to be done before pipe and plane enable, so we do it in
|
|
|
|
* the pre_enable hook instead of the enable hook.
|
|
|
|
*/
|
2020-03-13 18:48:30 +02:00
|
|
|
static void intel_dsi_pre_enable(struct intel_atomic_state *state,
|
|
|
|
struct intel_encoder *encoder,
|
2017-08-18 16:49:58 +03:00
|
|
|
const struct intel_crtc_state *pipe_config,
|
|
|
|
const struct drm_connector_state *conn_state)
|
2014-04-09 13:59:31 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2021-06-09 11:56:32 +03:00
|
|
|
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
|
|
|
enum pipe pipe = crtc->pipe;
|
2017-02-28 11:26:17 +02:00
|
|
|
enum port port;
|
2017-06-13 13:18:15 +05:30
|
|
|
bool glk_cold_boot = false;
|
2014-04-09 13:59:31 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2014-04-09 13:59:31 +05:30
|
|
|
|
2021-03-25 12:48:23 +01:00
|
|
|
intel_dsi_wait_panel_power_cycle(intel_dsi);
|
|
|
|
|
2025-02-12 18:36:36 +02:00
|
|
|
intel_set_cpu_fifo_underrun_reporting(display, pipe, true);
|
2017-10-05 13:52:12 +03:00
|
|
|
|
2016-03-15 16:40:03 +02:00
|
|
|
/*
|
|
|
|
* The BIOS may leave the PLL in a wonky state where it doesn't
|
|
|
|
* lock. It needs to be fully powered down to fix it.
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2018-07-05 16:25:08 +03:00
|
|
|
bxt_dsi_pll_disable(encoder);
|
|
|
|
bxt_dsi_pll_enable(encoder, pipe_config);
|
|
|
|
} else {
|
|
|
|
vlv_dsi_pll_disable(encoder);
|
|
|
|
vlv_dsi_pll_enable(encoder, pipe_config);
|
|
|
|
}
|
2016-03-15 16:40:03 +02:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.broxton) {
|
2017-01-25 19:43:23 +05:30
|
|
|
/* Add MIPI IO reset programming for modeset */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, BXT_P_CR_GT_DISP_PWRON, 0, MIPIO_RST_CTRL);
|
2017-01-25 19:43:23 +05:30
|
|
|
|
|
|
|
/* Power up DSI regulator */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
|
|
|
|
intel_de_write(display, BXT_P_DSI_REGULATOR_TX_CTRL, 0);
|
2017-01-25 19:43:23 +05:30
|
|
|
}
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.valleyview || display->platform.cherryview) {
|
2016-04-12 22:14:34 +03:00
|
|
|
/* Disable DPOunit clock gating, can stall pipe */
|
2025-03-21 12:52:45 +02:00
|
|
|
intel_de_rmw(display, DSPCLK_GATE_D(display),
|
2022-12-19 10:24:28 +01:00
|
|
|
0, DPOUNIT_CLOCK_GATE_DISABLE);
|
2015-09-01 19:41:42 +05:30
|
|
|
}
|
2014-04-09 13:59:31 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (!display->platform.geminilake)
|
2017-06-13 13:18:15 +05:30
|
|
|
intel_dsi_prepare(encoder, pipe_config);
|
2017-03-01 15:15:00 +02:00
|
|
|
|
2023-04-25 21:44:41 +02:00
|
|
|
/* Give the panel time to power-on and then deassert its reset */
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON);
|
2023-04-25 21:44:41 +02:00
|
|
|
msleep(intel_dsi->panel_on_delay);
|
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET);
|
2017-03-01 15:15:01 +02:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake) {
|
2017-06-13 13:18:15 +05:30
|
|
|
glk_cold_boot = glk_dsi_enable_io(encoder);
|
|
|
|
|
|
|
|
/* Prepare port in cold boot(s3/s4) scenario */
|
|
|
|
if (glk_cold_boot)
|
|
|
|
intel_dsi_prepare(encoder, pipe_config);
|
|
|
|
}
|
2017-06-13 13:18:14 +05:30
|
|
|
|
2017-03-01 15:15:01 +02:00
|
|
|
/* Put device in ready state (LP-11) */
|
2014-04-09 13:59:31 +05:30
|
|
|
intel_dsi_device_ready(encoder);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2017-06-13 13:18:15 +05:30
|
|
|
/* Prepare port in normal boot scenario */
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake && !glk_cold_boot)
|
2017-06-13 13:18:15 +05:30
|
|
|
intel_dsi_prepare(encoder, pipe_config);
|
|
|
|
|
2017-03-01 15:15:01 +02:00
|
|
|
/* Send initialization commands in LP mode */
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_INIT_OTP);
|
2014-04-09 13:59:32 +05:30
|
|
|
|
2021-03-17 15:42:28 +08:00
|
|
|
/*
|
|
|
|
* Enable port in pre-enable phase itself because as per hw team
|
|
|
|
* recommendation, port should be enabled before plane & pipe
|
|
|
|
*/
|
2017-02-28 11:26:17 +02:00
|
|
|
if (is_cmd_mode(intel_dsi)) {
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display,
|
|
|
|
MIPI_MAX_RETURN_PKT_SIZE(display, port), 8 * 4);
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_ON);
|
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON);
|
2017-02-28 11:26:17 +02:00
|
|
|
} else {
|
|
|
|
msleep(20); /* XXX */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
|
|
|
dpi_send_cmd(intel_dsi, TURN_ON, false, port);
|
2023-04-25 21:44:41 +02:00
|
|
|
msleep(100);
|
2017-02-28 11:26:17 +02:00
|
|
|
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON);
|
2017-02-28 11:26:17 +02:00
|
|
|
|
2017-10-31 22:51:15 +02:00
|
|
|
intel_dsi_port_enable(encoder, pipe_config);
|
2017-02-28 11:26:17 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 14:06:51 +03:00
|
|
|
intel_backlight_enable(pipe_config, conn_state);
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_ON);
|
2014-04-09 13:59:31 +05:30
|
|
|
}
|
|
|
|
|
2020-03-13 18:48:30 +02:00
|
|
|
static void bxt_dsi_enable(struct intel_atomic_state *state,
|
|
|
|
struct intel_encoder *encoder,
|
2020-01-28 18:28:48 +02:00
|
|
|
const struct intel_crtc_state *crtc_state,
|
|
|
|
const struct drm_connector_state *conn_state)
|
|
|
|
{
|
|
|
|
intel_crtc_vblank_on(crtc_state);
|
|
|
|
}
|
|
|
|
|
2017-03-07 11:24:19 +02:00
|
|
|
/*
|
|
|
|
* DSI port disable has to be done after pipe and plane disable, so we do it in
|
|
|
|
* the post_disable hook.
|
|
|
|
*/
|
2020-03-13 18:48:30 +02:00
|
|
|
static void intel_dsi_disable(struct intel_atomic_state *state,
|
|
|
|
struct intel_encoder *encoder,
|
2017-08-18 16:49:58 +03:00
|
|
|
const struct intel_crtc_state *old_crtc_state,
|
|
|
|
const struct drm_connector_state *old_conn_state)
|
2014-05-27 19:00:09 +03:00
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2015-01-16 14:27:16 +02:00
|
|
|
enum port port;
|
2014-05-27 19:00:09 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2014-05-27 19:00:09 +03:00
|
|
|
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_BACKLIGHT_OFF);
|
2021-08-25 14:06:51 +03:00
|
|
|
intel_backlight_disable(old_conn_state);
|
2015-06-26 14:32:10 +05:30
|
|
|
|
2017-03-01 15:15:03 +02:00
|
|
|
/*
|
|
|
|
* According to the spec we should send SHUTDOWN before
|
|
|
|
* MIPI_SEQ_DISPLAY_OFF only for v3+ VBTs, but field testing
|
|
|
|
* has shown that the v3 sequence works for v2 VBTs too
|
|
|
|
*/
|
2014-05-27 19:00:09 +03:00
|
|
|
if (is_vid_mode(intel_dsi)) {
|
|
|
|
/* Send Shutdown command to the panel in LP mode */
|
2015-01-16 14:27:16 +02:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2015-01-16 14:27:26 +02:00
|
|
|
dpi_send_cmd(intel_dsi, SHUTDOWN, false, port);
|
2014-05-27 19:00:09 +03:00
|
|
|
msleep(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 12:51:33 +05:30
|
|
|
static void intel_dsi_clear_device_ready(struct intel_encoder *encoder)
|
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2017-03-01 12:51:33 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake)
|
2017-03-01 12:51:33 +05:30
|
|
|
glk_dsi_clear_device_ready(encoder);
|
2018-07-05 16:25:09 +03:00
|
|
|
else
|
|
|
|
vlv_dsi_clear_device_ready(encoder);
|
2017-03-01 12:51:33 +05:30
|
|
|
}
|
|
|
|
|
2020-03-13 18:48:30 +02:00
|
|
|
static void intel_dsi_post_disable(struct intel_atomic_state *state,
|
|
|
|
struct intel_encoder *encoder,
|
2019-12-13 21:52:17 +02:00
|
|
|
const struct intel_crtc_state *old_crtc_state,
|
|
|
|
const struct drm_connector_state *old_conn_state)
|
2013-12-11 17:52:05 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-02-28 11:26:17 +02:00
|
|
|
enum port port;
|
2013-12-11 17:52:05 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2013-12-11 17:52:05 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2019-12-13 21:52:17 +02:00
|
|
|
intel_crtc_vblank_off(old_crtc_state);
|
|
|
|
|
2019-12-24 00:40:06 -08:00
|
|
|
skl_scaler_disable(old_crtc_state);
|
2019-12-13 21:52:17 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 11:26:17 +02:00
|
|
|
if (is_vid_mode(intel_dsi)) {
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports)
|
2018-07-05 16:25:08 +03:00
|
|
|
vlv_dsi_wait_for_fifo_empty(intel_dsi, port);
|
2017-02-28 11:26:17 +02:00
|
|
|
|
|
|
|
intel_dsi_port_disable(encoder);
|
|
|
|
usleep_range(2000, 5000);
|
|
|
|
}
|
|
|
|
|
2017-02-28 11:26:18 +02:00
|
|
|
intel_dsi_unprepare(encoder);
|
2017-02-28 11:26:17 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* if disable packets are sent before sending shutdown packet then in
|
|
|
|
* some next enable sequence send turn on packet error is observed
|
|
|
|
*/
|
2017-03-01 15:15:04 +02:00
|
|
|
if (is_cmd_mode(intel_dsi))
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_TEAR_OFF);
|
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_OFF);
|
2014-05-27 19:00:09 +03:00
|
|
|
|
2017-03-01 15:15:01 +02:00
|
|
|
/* Transition to LP-00 */
|
2013-12-11 17:52:05 +05:30
|
|
|
intel_dsi_clear_device_ready(encoder);
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.broxton) {
|
2017-01-25 19:43:23 +05:30
|
|
|
/* Power down DSI regulator to save power */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, BXT_P_DSI_REGULATOR_CFG, STAP_SELECT);
|
|
|
|
intel_de_write(display, BXT_P_DSI_REGULATOR_TX_CTRL,
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
HS_IO_CTRL_SELECT);
|
2017-01-25 19:43:23 +05:30
|
|
|
|
|
|
|
/* Add MIPI IO reset programming for modeset */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, BXT_P_CR_GT_DISP_PWRON, MIPIO_RST_CTRL, 0);
|
2017-01-25 19:43:23 +05:30
|
|
|
}
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2018-07-05 16:25:08 +03:00
|
|
|
bxt_dsi_pll_disable(encoder);
|
|
|
|
} else {
|
|
|
|
vlv_dsi_pll_disable(encoder);
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
intel_de_rmw(display, DSPCLK_GATE_D(display),
|
2022-12-19 10:24:28 +01:00
|
|
|
DPOUNIT_CLOCK_GATE_DISABLE, 0);
|
2016-02-18 13:49:26 +02:00
|
|
|
}
|
2014-04-09 13:59:32 +05:30
|
|
|
|
2017-03-01 15:15:01 +02:00
|
|
|
/* Assert reset */
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_ASSERT_RESET);
|
2014-04-14 11:18:26 +05:30
|
|
|
|
2023-04-25 21:44:41 +02:00
|
|
|
msleep(intel_dsi->panel_off_delay);
|
2017-03-06 16:31:27 +02:00
|
|
|
intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_OFF);
|
2016-04-18 19:17:51 +03:00
|
|
|
|
2021-03-25 12:48:23 +01:00
|
|
|
intel_dsi->panel_power_off_time = ktime_get_boottime();
|
2013-12-11 17:52:05 +05:30
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
|
|
|
|
static bool intel_dsi_get_hw_state(struct intel_encoder *encoder,
|
|
|
|
enum pipe *pipe)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2019-01-14 14:21:24 +00:00
|
|
|
intel_wakeref_t wakeref;
|
2014-11-14 16:54:21 +02:00
|
|
|
enum port port;
|
2016-03-15 21:51:11 +02:00
|
|
|
bool active = false;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-02-06 20:55:27 +02:00
|
|
|
wakeref = intel_display_power_get_if_enabled(display,
|
2019-01-14 14:21:24 +00:00
|
|
|
encoder->power_domain);
|
|
|
|
if (!wakeref)
|
2014-03-05 16:20:54 +02:00
|
|
|
return false;
|
|
|
|
|
2016-03-24 12:41:40 +02:00
|
|
|
/*
|
|
|
|
* On Broxton the PLL needs to be enabled with a valid divider
|
|
|
|
* configuration, otherwise accessing DSI registers will hang the
|
|
|
|
* machine. See BSpec North Display Engine registers/MIPI[BXT].
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if ((display->platform.geminilake || display->platform.broxton) &&
|
2025-03-21 12:52:46 +02:00
|
|
|
!bxt_dsi_pll_is_enabled(display))
|
2016-03-24 12:41:40 +02:00
|
|
|
goto out_put_power;
|
|
|
|
|
2013-08-27 15:12:20 +03:00
|
|
|
/* XXX: this only works for one DSI output */
|
2014-12-09 10:59:20 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2025-03-21 12:52:45 +02:00
|
|
|
i915_reg_t port_ctrl = port_ctrl_reg(display, port);
|
2024-04-19 13:04:06 +03:00
|
|
|
bool enabled = intel_de_read(display, port_ctrl) & DPI_ENABLE;
|
2014-12-09 10:59:20 +05:30
|
|
|
|
2016-04-15 15:47:31 +03:00
|
|
|
/*
|
|
|
|
* Due to some hardware limitations on VLV/CHV, the DPI enable
|
|
|
|
* bit in port C control register does not get set. As a
|
|
|
|
* workaround, check pipe B conf instead.
|
2014-12-09 10:59:20 +05:30
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if ((display->platform.valleyview || display->platform.cherryview) &&
|
2016-10-14 10:13:44 +01:00
|
|
|
port == PORT_C)
|
2024-06-04 18:25:36 +03:00
|
|
|
enabled = intel_de_read(display,
|
2025-03-21 12:52:45 +02:00
|
|
|
TRANSCONF(display, PIPE_B)) & TRANSCONF_ENABLE;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2016-03-15 21:51:11 +02:00
|
|
|
/* Try command mode if video mode not enabled */
|
|
|
|
if (!enabled) {
|
2024-04-19 13:04:06 +03:00
|
|
|
u32 tmp = intel_de_read(display,
|
|
|
|
MIPI_DSI_FUNC_PRG(display, port));
|
2016-03-15 21:51:11 +02:00
|
|
|
enabled = tmp & CMD_MODE_DATA_WIDTH_MASK;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
2016-03-15 21:51:11 +02:00
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
continue;
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
if (!(intel_de_read(display, MIPI_DEVICE_READY(display, port)) & DEVICE_READY))
|
2016-03-15 21:51:11 +02:00
|
|
|
continue;
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2024-04-19 13:04:06 +03:00
|
|
|
u32 tmp = intel_de_read(display, MIPI_CTRL(display, port));
|
2016-03-15 21:51:12 +02:00
|
|
|
tmp &= BXT_PIPE_SELECT_MASK;
|
|
|
|
tmp >>= BXT_PIPE_SELECT_SHIFT;
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
if (drm_WARN_ON(display->drm, tmp > PIPE_C))
|
2016-03-15 21:51:12 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
*pipe = tmp;
|
|
|
|
} else {
|
|
|
|
*pipe = port == PORT_A ? PIPE_A : PIPE_B;
|
|
|
|
}
|
|
|
|
|
2016-03-15 21:51:11 +02:00
|
|
|
active = true;
|
|
|
|
break;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
2016-03-15 21:51:11 +02:00
|
|
|
|
2016-03-24 12:41:40 +02:00
|
|
|
out_put_power:
|
2025-02-06 20:55:27 +02:00
|
|
|
intel_display_power_put(display, encoder->power_domain, wakeref);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2016-03-15 21:51:11 +02:00
|
|
|
return active;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2016-04-07 14:36:07 +05:30
|
|
|
static void bxt_dsi_get_pipe_config(struct intel_encoder *encoder,
|
2017-08-18 16:49:58 +03:00
|
|
|
struct intel_crtc_state *pipe_config)
|
2016-04-07 14:36:07 +05:30
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2016-04-07 14:36:07 +05:30
|
|
|
struct drm_display_mode *adjusted_mode =
|
2019-10-31 12:26:02 +01:00
|
|
|
&pipe_config->hw.adjusted_mode;
|
2016-04-19 13:48:14 +05:30
|
|
|
struct drm_display_mode *adjusted_mode_sw;
|
2019-10-31 12:26:03 +01:00
|
|
|
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2016-04-19 13:48:13 +05:30
|
|
|
unsigned int lane_count = intel_dsi->lane_count;
|
2016-04-07 14:36:07 +05:30
|
|
|
unsigned int bpp, fmt;
|
|
|
|
enum port port;
|
2025-03-14 17:01:36 +02:00
|
|
|
u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
|
2016-04-19 13:48:14 +05:30
|
|
|
u16 hfp_sw, hsync_sw, hbp_sw;
|
|
|
|
u16 crtc_htotal_sw, crtc_hsync_start_sw, crtc_hsync_end_sw,
|
|
|
|
crtc_hblank_start_sw, crtc_hblank_end_sw;
|
|
|
|
|
2016-08-09 17:04:09 +02:00
|
|
|
/* FIXME: hw readout should not depend on SW state */
|
2019-10-31 12:26:02 +01:00
|
|
|
adjusted_mode_sw = &crtc->config->hw.adjusted_mode;
|
2016-04-07 14:36:07 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Atleast one port is active as encoder->get_config called only if
|
|
|
|
* encoder->get_hw_state() returns true.
|
|
|
|
*/
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
if (intel_de_read(display, BXT_MIPI_PORT_CTRL(port)) & DPI_ENABLE)
|
2016-04-07 14:36:07 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
fmt = intel_de_read(display, MIPI_DSI_FUNC_PRG(display, port)) & VID_MODE_FORMAT_MASK;
|
2018-12-01 12:31:45 +01:00
|
|
|
bpp = mipi_dsi_pixel_format_to_bpp(
|
|
|
|
pixel_format_from_register_bits(fmt));
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2023-03-14 15:02:48 +02:00
|
|
|
pipe_config->pipe_bpp = bdw_get_pipe_misc_bpp(crtc);
|
2019-04-05 17:13:49 +03:00
|
|
|
|
2017-09-25 19:26:01 +05:30
|
|
|
/* Enable Frame time stamo based scanline reporting */
|
2020-04-29 13:39:04 +03:00
|
|
|
pipe_config->mode_flags |=
|
|
|
|
I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP;
|
2017-09-25 19:26:01 +05:30
|
|
|
|
2016-04-07 14:36:07 +05:30
|
|
|
/* In terms of pixels */
|
|
|
|
adjusted_mode->crtc_hdisplay =
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_read(display,
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
BXT_MIPI_TRANS_HACTIVE(port));
|
2016-04-07 14:36:07 +05:30
|
|
|
adjusted_mode->crtc_vdisplay =
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_read(display,
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
BXT_MIPI_TRANS_VACTIVE(port));
|
2016-04-07 14:36:07 +05:30
|
|
|
adjusted_mode->crtc_vtotal =
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_read(display,
|
2025-03-14 17:01:34 +02:00
|
|
|
BXT_MIPI_TRANS_VTOTAL(port)) + 1;
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2016-04-19 13:48:13 +05:30
|
|
|
hactive = adjusted_mode->crtc_hdisplay;
|
2024-04-19 13:04:06 +03:00
|
|
|
hfp = intel_de_read(display, MIPI_HFP_COUNT(display, port));
|
2016-04-19 13:48:13 +05:30
|
|
|
|
2016-04-07 14:36:07 +05:30
|
|
|
/*
|
2016-04-19 13:48:13 +05:30
|
|
|
* Meaningful for video mode non-burst sync pulse mode only,
|
|
|
|
* can be zero for non-burst sync events and burst modes
|
2016-04-07 14:36:07 +05:30
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
hsync = intel_de_read(display, MIPI_HSYNC_PADDING_COUNT(display, port));
|
|
|
|
hbp = intel_de_read(display, MIPI_HBP_COUNT(display, port));
|
2016-04-19 13:48:13 +05:30
|
|
|
|
2024-09-13 14:17:27 +08:00
|
|
|
/* horizontal values are in terms of high speed byte clock */
|
2016-04-19 13:48:13 +05:30
|
|
|
hfp = pixels_from_txbyteclkhs(hfp, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hbp = pixels_from_txbyteclkhs(hbp, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
|
|
|
|
if (intel_dsi->dual_link) {
|
|
|
|
hfp *= 2;
|
|
|
|
hsync *= 2;
|
|
|
|
hbp *= 2;
|
|
|
|
}
|
2016-04-07 14:36:07 +05:30
|
|
|
|
|
|
|
/* vertical values are in terms of lines */
|
2024-04-19 13:04:06 +03:00
|
|
|
vfp = intel_de_read(display, MIPI_VFP_COUNT(display, port));
|
2025-03-14 17:01:36 +02:00
|
|
|
vbp = intel_de_read(display, MIPI_VBP_COUNT(display, port));
|
2024-04-19 13:04:06 +03:00
|
|
|
vsync = intel_de_read(display, MIPI_VSYNC_PADDING_COUNT(display, port));
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2016-04-19 13:48:13 +05:30
|
|
|
adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp;
|
|
|
|
adjusted_mode->crtc_hsync_start = hfp + adjusted_mode->crtc_hdisplay;
|
|
|
|
adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start;
|
2016-04-07 14:36:07 +05:30
|
|
|
adjusted_mode->crtc_hblank_start = adjusted_mode->crtc_hdisplay;
|
2016-04-19 13:48:13 +05:30
|
|
|
adjusted_mode->crtc_hblank_end = adjusted_mode->crtc_htotal;
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2025-03-14 17:01:36 +02:00
|
|
|
drm_WARN_ON(display->drm, adjusted_mode->crtc_vdisplay +
|
|
|
|
vfp + vsync + vbp != adjusted_mode->crtc_vtotal);
|
2016-04-19 13:48:13 +05:30
|
|
|
adjusted_mode->crtc_vsync_start = vfp + adjusted_mode->crtc_vdisplay;
|
|
|
|
adjusted_mode->crtc_vsync_end = vsync + adjusted_mode->crtc_vsync_start;
|
2016-04-07 14:36:07 +05:30
|
|
|
adjusted_mode->crtc_vblank_start = adjusted_mode->crtc_vdisplay;
|
|
|
|
adjusted_mode->crtc_vblank_end = adjusted_mode->crtc_vtotal;
|
|
|
|
|
2016-04-19 13:48:14 +05:30
|
|
|
/*
|
|
|
|
* In BXT DSI there is no regs programmed with few horizontal timings
|
|
|
|
* in Pixels but txbyteclkhs.. So retrieval process adds some
|
|
|
|
* ROUND_UP ERRORS in the process of PIXELS<==>txbyteclkhs.
|
|
|
|
* Actually here for the given adjusted_mode, we are calculating the
|
|
|
|
* value programmed to the port and then back to the horizontal timing
|
|
|
|
* param in pixels. This is the expected value, including roundup errors
|
|
|
|
* And if that is same as retrieved value from port, then
|
|
|
|
* (HW state) adjusted_mode's horizontal timings are corrected to
|
|
|
|
* match with SW state to nullify the errors.
|
|
|
|
*/
|
|
|
|
/* Calculating the value programmed to the Port register */
|
|
|
|
hfp_sw = adjusted_mode_sw->crtc_hsync_start -
|
|
|
|
adjusted_mode_sw->crtc_hdisplay;
|
|
|
|
hsync_sw = adjusted_mode_sw->crtc_hsync_end -
|
|
|
|
adjusted_mode_sw->crtc_hsync_start;
|
|
|
|
hbp_sw = adjusted_mode_sw->crtc_htotal -
|
|
|
|
adjusted_mode_sw->crtc_hsync_end;
|
|
|
|
|
|
|
|
if (intel_dsi->dual_link) {
|
|
|
|
hfp_sw /= 2;
|
|
|
|
hsync_sw /= 2;
|
|
|
|
hbp_sw /= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
hfp_sw = txbyteclkhs(hfp_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hsync_sw = txbyteclkhs(hsync_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hbp_sw = txbyteclkhs(hbp_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
|
|
|
|
/* Reverse calculating the adjusted mode parameters from port reg vals*/
|
|
|
|
hfp_sw = pixels_from_txbyteclkhs(hfp_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hsync_sw = pixels_from_txbyteclkhs(hsync_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
hbp_sw = pixels_from_txbyteclkhs(hbp_sw, bpp, lane_count,
|
|
|
|
intel_dsi->burst_mode_ratio);
|
|
|
|
|
|
|
|
if (intel_dsi->dual_link) {
|
|
|
|
hfp_sw *= 2;
|
|
|
|
hsync_sw *= 2;
|
|
|
|
hbp_sw *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
crtc_htotal_sw = adjusted_mode_sw->crtc_hdisplay + hfp_sw +
|
|
|
|
hsync_sw + hbp_sw;
|
|
|
|
crtc_hsync_start_sw = hfp_sw + adjusted_mode_sw->crtc_hdisplay;
|
|
|
|
crtc_hsync_end_sw = hsync_sw + crtc_hsync_start_sw;
|
|
|
|
crtc_hblank_start_sw = adjusted_mode_sw->crtc_hdisplay;
|
|
|
|
crtc_hblank_end_sw = crtc_htotal_sw;
|
|
|
|
|
|
|
|
if (adjusted_mode->crtc_htotal == crtc_htotal_sw)
|
|
|
|
adjusted_mode->crtc_htotal = adjusted_mode_sw->crtc_htotal;
|
|
|
|
|
|
|
|
if (adjusted_mode->crtc_hsync_start == crtc_hsync_start_sw)
|
|
|
|
adjusted_mode->crtc_hsync_start =
|
|
|
|
adjusted_mode_sw->crtc_hsync_start;
|
|
|
|
|
|
|
|
if (adjusted_mode->crtc_hsync_end == crtc_hsync_end_sw)
|
|
|
|
adjusted_mode->crtc_hsync_end =
|
|
|
|
adjusted_mode_sw->crtc_hsync_end;
|
|
|
|
|
|
|
|
if (adjusted_mode->crtc_hblank_start == crtc_hblank_start_sw)
|
|
|
|
adjusted_mode->crtc_hblank_start =
|
|
|
|
adjusted_mode_sw->crtc_hblank_start;
|
|
|
|
|
|
|
|
if (adjusted_mode->crtc_hblank_end == crtc_hblank_end_sw)
|
|
|
|
adjusted_mode->crtc_hblank_end =
|
|
|
|
adjusted_mode_sw->crtc_hblank_end;
|
|
|
|
}
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2013-08-27 15:12:20 +03:00
|
|
|
static void intel_dsi_get_config(struct intel_encoder *encoder,
|
2015-01-15 14:55:21 +02:00
|
|
|
struct intel_crtc_state *pipe_config)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2021-10-24 17:50:20 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2016-01-08 12:45:39 +02:00
|
|
|
u32 pclk;
|
2021-10-24 17:50:20 +02:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2017-10-27 22:31:23 +03:00
|
|
|
pipe_config->output_types |= BIT(INTEL_OUTPUT_DSI);
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2016-04-07 14:36:07 +05:30
|
|
|
bxt_dsi_get_pipe_config(encoder, pipe_config);
|
2018-12-01 12:31:45 +01:00
|
|
|
pclk = bxt_dsi_get_pclk(encoder, pipe_config);
|
2018-07-05 16:25:08 +03:00
|
|
|
} else {
|
2018-12-01 12:31:45 +01:00
|
|
|
pclk = vlv_dsi_get_pclk(encoder, pipe_config);
|
2018-07-05 16:25:08 +03:00
|
|
|
}
|
2016-04-07 14:36:07 +05:30
|
|
|
|
2022-09-07 12:10:47 +03:00
|
|
|
pipe_config->port_clock = pclk;
|
2021-10-24 17:50:20 +02:00
|
|
|
|
2022-09-07 12:10:47 +03:00
|
|
|
/* FIXME definitely not right for burst/cmd mode/pixel overlap */
|
|
|
|
pipe_config->hw.adjusted_mode.crtc_clock = pclk;
|
|
|
|
if (intel_dsi->dual_link)
|
|
|
|
pipe_config->hw.adjusted_mode.crtc_clock *= 2;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* return txclkesc cycles in terms of divider and duration in us */
|
|
|
|
static u16 txclkesc(u32 divider, unsigned int us)
|
|
|
|
{
|
|
|
|
switch (divider) {
|
|
|
|
case ESCAPE_CLOCK_DIVIDER_1:
|
|
|
|
default:
|
|
|
|
return 20 * us;
|
|
|
|
case ESCAPE_CLOCK_DIVIDER_2:
|
|
|
|
return 10 * us;
|
|
|
|
case ESCAPE_CLOCK_DIVIDER_4:
|
|
|
|
return 5 * us;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
static void set_dsi_timings(struct intel_encoder *encoder,
|
2015-09-25 16:37:43 +03:00
|
|
|
const struct drm_display_mode *adjusted_mode)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2024-04-19 13:04:05 +03:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2014-12-04 10:58:54 +05:30
|
|
|
enum port port;
|
2016-03-16 12:21:40 +02:00
|
|
|
unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
|
2013-08-27 15:12:20 +03:00
|
|
|
unsigned int lane_count = intel_dsi->lane_count;
|
|
|
|
|
|
|
|
u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp;
|
|
|
|
|
2015-09-25 16:38:56 +03:00
|
|
|
hactive = adjusted_mode->crtc_hdisplay;
|
|
|
|
hfp = adjusted_mode->crtc_hsync_start - adjusted_mode->crtc_hdisplay;
|
|
|
|
hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start;
|
|
|
|
hbp = adjusted_mode->crtc_htotal - adjusted_mode->crtc_hsync_end;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-04 10:58:54 +05:30
|
|
|
if (intel_dsi->dual_link) {
|
|
|
|
hactive /= 2;
|
|
|
|
if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
|
|
|
|
hactive += intel_dsi->pixel_overlap;
|
|
|
|
hfp /= 2;
|
|
|
|
hsync /= 2;
|
|
|
|
hbp /= 2;
|
|
|
|
}
|
|
|
|
|
2015-09-25 16:38:56 +03:00
|
|
|
vfp = adjusted_mode->crtc_vsync_start - adjusted_mode->crtc_vdisplay;
|
|
|
|
vsync = adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start;
|
|
|
|
vbp = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_end;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
|
|
|
/* horizontal values are in terms of high speed byte clock */
|
2014-07-30 20:34:57 +05:30
|
|
|
hactive = txbyteclkhs(hactive, bpp, lane_count,
|
2014-07-30 22:34:27 +02:00
|
|
|
intel_dsi->burst_mode_ratio);
|
2014-07-30 20:34:57 +05:30
|
|
|
hfp = txbyteclkhs(hfp, bpp, lane_count, intel_dsi->burst_mode_ratio);
|
|
|
|
hsync = txbyteclkhs(hsync, bpp, lane_count,
|
2014-07-30 22:34:27 +02:00
|
|
|
intel_dsi->burst_mode_ratio);
|
2014-07-30 20:34:57 +05:30
|
|
|
hbp = txbyteclkhs(hbp, bpp, lane_count, intel_dsi->burst_mode_ratio);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-04 10:58:54 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2015-09-01 19:41:40 +05:30
|
|
|
/*
|
|
|
|
* Program hdisplay and vdisplay on MIPI transcoder.
|
|
|
|
* This is different from calculated hactive and
|
|
|
|
* vactive, as they are calculated per channel basis,
|
|
|
|
* whereas these values should be based on resolution.
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, BXT_MIPI_TRANS_HACTIVE(port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
adjusted_mode->crtc_hdisplay);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, BXT_MIPI_TRANS_VACTIVE(port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
adjusted_mode->crtc_vdisplay);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, BXT_MIPI_TRANS_VTOTAL(port),
|
2025-03-14 17:01:34 +02:00
|
|
|
adjusted_mode->crtc_vtotal - 1);
|
2015-09-01 19:41:40 +05:30
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HACTIVE_AREA_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
hactive);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HFP_COUNT(display, port), hfp);
|
2014-12-04 10:58:54 +05:30
|
|
|
|
|
|
|
/* meaningful for video mode non-burst sync pulse mode only,
|
|
|
|
* can be zero for non-burst sync events and burst modes */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HSYNC_PADDING_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
hsync);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HBP_COUNT(display, port), hbp);
|
2014-12-04 10:58:54 +05:30
|
|
|
|
|
|
|
/* vertical values are in terms of lines */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_VFP_COUNT(display, port), vfp);
|
|
|
|
intel_de_write(display, MIPI_VSYNC_PADDING_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
vsync);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_VBP_COUNT(display, port), vbp);
|
2014-12-04 10:58:54 +05:30
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2016-03-16 12:21:40 +02:00
|
|
|
static u32 pixel_format_to_reg(enum mipi_dsi_pixel_format fmt)
|
|
|
|
{
|
|
|
|
switch (fmt) {
|
|
|
|
case MIPI_DSI_FMT_RGB888:
|
|
|
|
return VID_MODE_FORMAT_RGB888;
|
|
|
|
case MIPI_DSI_FMT_RGB666:
|
|
|
|
return VID_MODE_FORMAT_RGB666;
|
|
|
|
case MIPI_DSI_FMT_RGB666_PACKED:
|
|
|
|
return VID_MODE_FORMAT_RGB666_PACKED;
|
|
|
|
case MIPI_DSI_FMT_RGB565:
|
|
|
|
return VID_MODE_FORMAT_RGB565;
|
|
|
|
default:
|
|
|
|
MISSING_CASE(fmt);
|
|
|
|
return VID_MODE_FORMAT_RGB666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
static void intel_dsi_prepare(struct intel_encoder *encoder,
|
2017-08-18 16:49:58 +03:00
|
|
|
const struct intel_crtc_state *pipe_config)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2021-06-09 11:56:32 +03:00
|
|
|
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
|
2024-04-19 13:04:05 +03:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2019-10-31 12:26:02 +01:00
|
|
|
const struct drm_display_mode *adjusted_mode = &pipe_config->hw.adjusted_mode;
|
2014-12-05 14:24:21 +05:30
|
|
|
enum port port;
|
2016-03-16 12:21:40 +02:00
|
|
|
unsigned int bpp = mipi_dsi_pixel_format_to_bpp(intel_dsi->pixel_format);
|
2013-08-27 15:12:20 +03:00
|
|
|
u32 val, tmp;
|
2014-12-05 14:24:21 +05:30
|
|
|
u16 mode_hdisplay;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
drm_dbg_kms(display->drm, "pipe %c\n", pipe_name(crtc->pipe));
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2015-09-25 16:38:56 +03:00
|
|
|
mode_hdisplay = adjusted_mode->crtc_hdisplay;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
if (intel_dsi->dual_link) {
|
|
|
|
mode_hdisplay /= 2;
|
|
|
|
if (intel_dsi->dual_link == DSI_DUAL_LINK_FRONT_BACK)
|
|
|
|
mode_hdisplay += intel_dsi->pixel_overlap;
|
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.valleyview || display->platform.cherryview) {
|
2015-09-01 19:41:40 +05:30
|
|
|
/*
|
|
|
|
* escape clock divider, 20MHz, shared for A and C.
|
|
|
|
* device ready must be off when doing this! txclkesc?
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
tmp = intel_de_read(display, MIPI_CTRL(display, PORT_A));
|
2015-09-01 19:41:40 +05:30
|
|
|
tmp &= ~ESCAPE_CLOCK_DIVIDER_MASK;
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_CTRL(display, PORT_A),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
tmp | ESCAPE_CLOCK_DIVIDER_1);
|
2015-09-01 19:41:40 +05:30
|
|
|
|
|
|
|
/* read request priority is per pipe */
|
2024-04-19 13:04:06 +03:00
|
|
|
tmp = intel_de_read(display, MIPI_CTRL(display, port));
|
2015-09-01 19:41:40 +05:30
|
|
|
tmp &= ~READ_REQUEST_PRIORITY_MASK;
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_CTRL(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
tmp | READ_REQUEST_PRIORITY_HIGH);
|
2025-03-21 12:52:45 +02:00
|
|
|
} else if (display->platform.geminilake || display->platform.broxton) {
|
2021-06-09 11:56:32 +03:00
|
|
|
enum pipe pipe = crtc->pipe;
|
2015-12-09 20:14:04 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_CTRL(display, port),
|
2022-12-19 10:24:28 +01:00
|
|
|
BXT_PIPE_SELECT_MASK, BXT_PIPE_SELECT(pipe));
|
2015-09-01 19:41:40 +05:30
|
|
|
}
|
2014-12-05 14:24:21 +05:30
|
|
|
|
|
|
|
/* XXX: why here, why like this? handling in irq handler?! */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_INTR_STAT(display, port), 0xffffffff);
|
|
|
|
intel_de_write(display, MIPI_INTR_EN(display, port), 0xffffffff);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DPHY_PARAM(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->dphy_reg);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DPI_RESOLUTION(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
adjusted_mode->crtc_vdisplay << VERTICAL_ADDRESS_SHIFT | mode_hdisplay << HORIZONTAL_ADDRESS_SHIFT);
|
2014-12-05 14:24:21 +05:30
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
|
|
|
|
set_dsi_timings(encoder, adjusted_mode);
|
|
|
|
|
|
|
|
val = intel_dsi->lane_count << DATA_LANES_PRG_REG_SHIFT;
|
|
|
|
if (is_cmd_mode(intel_dsi)) {
|
|
|
|
val |= intel_dsi->channel << CMD_MODE_CHANNEL_NUMBER_SHIFT;
|
|
|
|
val |= CMD_MODE_DATA_WIDTH_8_BIT; /* XXX */
|
|
|
|
} else {
|
|
|
|
val |= intel_dsi->channel << VID_MODE_CHANNEL_NUMBER_SHIFT;
|
2016-03-16 12:21:40 +02:00
|
|
|
val |= pixel_format_to_reg(intel_dsi->pixel_format);
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
tmp = 0;
|
|
|
|
if (intel_dsi->eotp_pkt == 0)
|
|
|
|
tmp |= EOT_DISABLE;
|
|
|
|
if (intel_dsi->clock_stop)
|
|
|
|
tmp |= CLOCKSTOP;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton) {
|
2016-06-03 17:57:05 +03:00
|
|
|
tmp |= BXT_DPHY_DEFEATURE_EN;
|
|
|
|
if (!is_cmd_mode(intel_dsi))
|
|
|
|
tmp |= BXT_DEFEATURE_DPI_FIFO_CTR;
|
|
|
|
}
|
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DSI_FUNC_PRG(display, port), val);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
|
|
|
/* timeouts for recovery. one frame IIUC. if counter expires,
|
|
|
|
* EOT and stop state. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In burst mode, value greater than one DPI line Time in byte
|
|
|
|
* clock (txbyteclkhs) To timeout this timer 1+ of the above
|
|
|
|
* said value is recommended.
|
|
|
|
*
|
|
|
|
* In non-burst mode, Value greater than one DPI frame time in
|
|
|
|
* byte clock(txbyteclkhs) To timeout this timer 1+ of the above
|
|
|
|
* said value is recommended.
|
|
|
|
*
|
|
|
|
* In DBI only mode, value greater than one DBI frame time in
|
|
|
|
* byte clock(txbyteclkhs) To timeout this timer 1+ of the above
|
|
|
|
* said value is recommended.
|
|
|
|
*/
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
if (is_vid_mode(intel_dsi) &&
|
2022-02-18 00:40:20 +02:00
|
|
|
intel_dsi->video_mode == BURST_MODE) {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HS_TX_TIMEOUT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
txbyteclkhs(adjusted_mode->crtc_htotal, bpp, intel_dsi->lane_count, intel_dsi->burst_mode_ratio) + 1);
|
2014-12-05 14:24:21 +05:30
|
|
|
} else {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HS_TX_TIMEOUT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
txbyteclkhs(adjusted_mode->crtc_vtotal * adjusted_mode->crtc_htotal, bpp, intel_dsi->lane_count, intel_dsi->burst_mode_ratio) + 1);
|
2014-12-05 14:24:21 +05:30
|
|
|
}
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_LP_RX_TIMEOUT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->lp_rx_timeout);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_TURN_AROUND_TIMEOUT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->turn_arnd_val);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_RESET_TIMER(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->rst_timer_val);
|
2014-04-09 13:59:33 +05:30
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* dphy stuff */
|
2014-04-09 13:59:33 +05:30
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* in terms of low power clock */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_INIT_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
txclkesc(intel_dsi->escape_clk_div, 100));
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if ((display->platform.geminilake || display->platform.broxton) &&
|
2021-04-07 13:39:45 -07:00
|
|
|
!intel_dsi->dual_link) {
|
2015-09-01 19:41:40 +05:30
|
|
|
/*
|
|
|
|
* BXT spec says write MIPI_INIT_COUNT for
|
|
|
|
* both the ports, even if only one is
|
|
|
|
* getting used. So write the other port
|
|
|
|
* if not in dual link mode.
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display,
|
|
|
|
MIPI_INIT_COUNT(display, port == PORT_A ? PORT_C : PORT_A),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->init_count);
|
2015-09-01 19:41:40 +05:30
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* recovery disables */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_EOT_DISABLE(display, port), tmp);
|
2014-04-14 11:18:25 +05:30
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* in terms of low power clock */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_INIT_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->init_count);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* in terms of txbyteclkhs. actual high to low switch +
|
|
|
|
* MIPI_STOP_STATE_STALL * MIPI_LP_BYTECLK.
|
|
|
|
*
|
|
|
|
* XXX: write MIPI_STOP_STATE_STALL?
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_HIGH_LOW_SWITCH_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->hs_to_lp_count);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
|
|
|
/* XXX: low power clock equivalence in terms of byte clock.
|
|
|
|
* the number of byte clocks occupied in one low power clock.
|
|
|
|
* based on txbyteclkhs and txclkesc.
|
|
|
|
* txclkesc time / txbyteclk time * (105 + MIPI_STOP_STATE_STALL
|
|
|
|
* ) / 105.???
|
|
|
|
*/
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_LP_BYTECLK(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->lp_byte_clk);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake) {
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_TLPX_TIME_COUNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->lp_byte_clk);
|
2017-02-17 18:13:30 +05:30
|
|
|
/* Shadow of DPHY reg */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_CLK_LANE_TIMING(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->dphy_reg);
|
2017-02-17 18:13:30 +05:30
|
|
|
}
|
|
|
|
|
2014-12-05 14:24:21 +05:30
|
|
|
/* the bw essential for transmitting 16 long packets containing
|
|
|
|
* 252 bytes meant for dcs write memory command is programmed in
|
|
|
|
* this register in terms of byte clocks. based on dsi transfer
|
|
|
|
* rate and the number of lanes configured the time taken to
|
|
|
|
* transmit 16 long packets in a dsi stream varies. */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DBI_BW_CTRL(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->bw_timer);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_CLK_LANE_SWITCH_TIME_CNT(display, port),
|
drm/i915/vlv_dsi: use intel_de_*() functions for register access
The implicit "dev_priv" local variable use has been a long-standing pain
point in the register access macros I915_READ(), I915_WRITE(),
POSTING_READ(), I915_READ_FW(), and I915_WRITE_FW().
Replace them with the corresponding new display engine register
accessors intel_de_read(), intel_de_write(), intel_de_posting_read(),
intel_de_read_fw(), and intel_de_write_fw().
No functional changes.
Generated using the following semantic patch:
@@
expression REG, OFFSET;
@@
- I915_READ(REG)
+ intel_de_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- POSTING_READ(REG)
+ intel_de_posting_read(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE(REG, OFFSET)
+ intel_de_write(dev_priv, REG, OFFSET)
@@
expression REG;
@@
- I915_READ_FW(REG)
+ intel_de_read_fw(dev_priv, REG)
@@
expression REG, OFFSET;
@@
- I915_WRITE_FW(REG, OFFSET)
+ intel_de_write_fw(dev_priv, REG, OFFSET)
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/436e4267529dc11cc7850d0a4f0703caa81b8c80.1579871655.git.jani.nikula@intel.com
2020-01-24 15:25:53 +02:00
|
|
|
intel_dsi->clk_lp_to_hs_count << LP_HS_SSW_CNT_SHIFT | intel_dsi->clk_hs_to_lp_count << HS_LP_PWR_SW_CNT_SHIFT);
|
2014-12-05 14:24:21 +05:30
|
|
|
|
2022-02-18 00:40:20 +02:00
|
|
|
if (is_vid_mode(intel_dsi)) {
|
|
|
|
u32 fmt = intel_dsi->video_frmt_cfg_bits | IP_TG_CONFIG;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some panels might have resolution which is not a
|
2014-12-05 14:24:21 +05:30
|
|
|
* multiple of 64 like 1366 x 768. Enable RANDOM
|
2022-02-18 00:40:20 +02:00
|
|
|
* resolution support for such panels by default.
|
|
|
|
*/
|
|
|
|
fmt |= RANDOM_DPI_DISPLAY_RESOLUTION;
|
|
|
|
|
|
|
|
switch (intel_dsi->video_mode) {
|
|
|
|
default:
|
|
|
|
MISSING_CASE(intel_dsi->video_mode);
|
|
|
|
fallthrough;
|
|
|
|
case NON_BURST_SYNC_EVENTS:
|
|
|
|
fmt |= VIDEO_MODE_NON_BURST_WITH_SYNC_EVENTS;
|
|
|
|
break;
|
|
|
|
case NON_BURST_SYNC_PULSE:
|
|
|
|
fmt |= VIDEO_MODE_NON_BURST_WITH_SYNC_PULSE;
|
|
|
|
break;
|
|
|
|
case BURST_MODE:
|
|
|
|
fmt |= VIDEO_MODE_BURST;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_VIDEO_MODE_FORMAT(display, port), fmt);
|
2022-02-18 00:40:20 +02:00
|
|
|
}
|
2014-12-05 14:24:21 +05:30
|
|
|
}
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2017-02-28 11:26:18 +02:00
|
|
|
static void intel_dsi_unprepare(struct intel_encoder *encoder)
|
|
|
|
{
|
2024-04-19 13:04:06 +03:00
|
|
|
struct intel_display *display = to_intel_display(encoder);
|
2019-12-04 20:05:43 +02:00
|
|
|
struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder);
|
2017-02-28 11:26:18 +02:00
|
|
|
enum port port;
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake)
|
2018-07-05 16:25:09 +03:00
|
|
|
return;
|
2017-02-28 11:26:18 +02:00
|
|
|
|
2018-07-05 16:25:09 +03:00
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
|
|
|
/* Panel commands can be sent when clock is in LP11 */
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port), 0x0);
|
2017-02-28 11:26:18 +02:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton)
|
2018-07-05 16:25:09 +03:00
|
|
|
bxt_dsi_reset_clocks(encoder, port);
|
|
|
|
else
|
|
|
|
vlv_dsi_reset_clocks(encoder, port);
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_EOT_DISABLE(display, port), CLOCKSTOP);
|
2017-02-28 11:26:18 +02:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_rmw(display, MIPI_DSI_FUNC_PRG(display, port), VID_MODE_FORMAT_MASK, 0);
|
2018-07-05 16:25:09 +03:00
|
|
|
|
2024-04-19 13:04:06 +03:00
|
|
|
intel_de_write(display, MIPI_DEVICE_READY(display, port), 0x1);
|
2017-02-28 11:26:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 15:12:20 +03:00
|
|
|
static const struct drm_encoder_funcs intel_dsi_funcs = {
|
2023-12-01 17:11:30 +01:00
|
|
|
.destroy = intel_encoder_destroy,
|
2013-08-27 15:12:20 +03:00
|
|
|
};
|
|
|
|
|
2023-11-27 16:50:25 +02:00
|
|
|
static enum drm_mode_status vlv_dsi_mode_valid(struct drm_connector *connector,
|
2024-12-14 15:37:09 +02:00
|
|
|
const struct drm_display_mode *mode)
|
2023-11-27 16:50:25 +02:00
|
|
|
{
|
2025-02-12 18:36:38 +02:00
|
|
|
struct intel_display *display = to_intel_display(connector->dev);
|
2023-11-27 16:50:25 +02:00
|
|
|
|
2025-02-12 18:36:38 +02:00
|
|
|
if (display->platform.valleyview || display->platform.cherryview) {
|
2023-11-27 16:50:25 +02:00
|
|
|
enum drm_mode_status status;
|
|
|
|
|
2025-02-12 18:36:38 +02:00
|
|
|
status = intel_cpu_transcoder_mode_valid(display, mode);
|
2023-11-27 16:50:25 +02:00
|
|
|
if (status != MODE_OK)
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
return intel_dsi_mode_valid(connector, mode);
|
|
|
|
}
|
|
|
|
|
2013-08-27 15:12:20 +03:00
|
|
|
static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = {
|
|
|
|
.get_modes = intel_dsi_get_modes,
|
2023-11-27 16:50:25 +02:00
|
|
|
.mode_valid = vlv_dsi_mode_valid,
|
2017-05-01 15:37:58 +02:00
|
|
|
.atomic_check = intel_digital_connector_atomic_check,
|
2013-08-27 15:12:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct drm_connector_funcs intel_dsi_connector_funcs = {
|
2020-09-10 19:42:56 +03:00
|
|
|
.detect = intel_panel_detect,
|
2016-06-24 14:00:15 +01:00
|
|
|
.late_register = intel_connector_register,
|
2016-06-17 11:40:33 +01:00
|
|
|
.early_unregister = intel_connector_unregister,
|
2018-10-09 17:11:03 +03:00
|
|
|
.destroy = intel_connector_destroy,
|
2013-08-27 15:12:20 +03:00
|
|
|
.fill_modes = drm_helper_probe_single_connector_modes,
|
2017-05-01 15:37:58 +02:00
|
|
|
.atomic_get_property = intel_digital_connector_atomic_get_property,
|
|
|
|
.atomic_set_property = intel_digital_connector_atomic_set_property,
|
2015-01-22 16:50:32 -08:00
|
|
|
.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
|
2017-05-01 15:37:58 +02:00
|
|
|
.atomic_duplicate_state = intel_digital_connector_duplicate_state,
|
2013-08-27 15:12:20 +03:00
|
|
|
};
|
|
|
|
|
2022-03-23 20:29:30 +02:00
|
|
|
static void vlv_dsi_add_properties(struct intel_connector *connector)
|
2016-04-12 22:14:37 +03:00
|
|
|
{
|
2022-03-23 20:29:30 +02:00
|
|
|
const struct drm_display_mode *fixed_mode =
|
|
|
|
intel_panel_preferred_fixed_mode(connector);
|
2016-04-12 22:14:37 +03:00
|
|
|
|
2022-09-12 14:18:10 +03:00
|
|
|
intel_attach_scaling_mode_property(&connector->base);
|
2017-11-25 20:35:51 +01:00
|
|
|
|
2021-09-23 23:01:09 +03:00
|
|
|
drm_connector_set_panel_orientation_with_quirk(&connector->base,
|
|
|
|
intel_dsi_get_panel_orientation(connector),
|
2022-03-11 19:24:13 +02:00
|
|
|
fixed_mode->hdisplay,
|
|
|
|
fixed_mode->vdisplay);
|
2016-04-12 22:14:37 +03:00
|
|
|
}
|
|
|
|
|
2019-06-05 20:17:34 +02:00
|
|
|
#define NS_KHZ_RATIO 1000000
|
|
|
|
|
|
|
|
#define PREPARE_CNT_MAX 0x3F
|
|
|
|
#define EXIT_ZERO_CNT_MAX 0x3F
|
|
|
|
#define CLK_ZERO_CNT_MAX 0xFF
|
|
|
|
#define TRAIL_CNT_MAX 0x1F
|
|
|
|
|
|
|
|
static void vlv_dphy_param_init(struct intel_dsi *intel_dsi)
|
|
|
|
{
|
2025-06-26 16:33:17 +02:00
|
|
|
struct intel_display *display = to_intel_display(&intel_dsi->base);
|
2022-05-10 13:42:39 +03:00
|
|
|
struct intel_connector *connector = intel_dsi->attached_connector;
|
|
|
|
struct mipi_config *mipi_config = connector->panel.vbt.dsi.config;
|
2019-06-05 20:17:34 +02:00
|
|
|
u32 tlpx_ns, extra_byte_count, tlpx_ui;
|
|
|
|
u32 ui_num, ui_den;
|
|
|
|
u32 prepare_cnt, exit_zero_cnt, clk_zero_cnt, trail_cnt;
|
|
|
|
u32 ths_prepare_ns, tclk_trail_ns;
|
|
|
|
u32 tclk_prepare_clkzero, ths_prepare_hszero;
|
|
|
|
u32 lp_to_hs_switch, hs_to_lp_switch;
|
|
|
|
u32 mul;
|
|
|
|
|
|
|
|
tlpx_ns = intel_dsi_tlpx_ns(intel_dsi);
|
|
|
|
|
|
|
|
switch (intel_dsi->lane_count) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
extra_byte_count = 2;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
extra_byte_count = 4;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
default:
|
|
|
|
extra_byte_count = 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in Kbps */
|
|
|
|
ui_num = NS_KHZ_RATIO;
|
|
|
|
ui_den = intel_dsi_bitrate(intel_dsi);
|
|
|
|
|
|
|
|
tclk_prepare_clkzero = mipi_config->tclk_prepare_clkzero;
|
|
|
|
ths_prepare_hszero = mipi_config->ths_prepare_hszero;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* B060
|
|
|
|
* LP byte clock = TLPX/ (8UI)
|
|
|
|
*/
|
|
|
|
intel_dsi->lp_byte_clk = DIV_ROUND_UP(tlpx_ns * ui_den, 8 * ui_num);
|
|
|
|
|
|
|
|
/* DDR clock period = 2 * UI
|
|
|
|
* UI(sec) = 1/(bitrate * 10^3) (bitrate is in KHZ)
|
|
|
|
* UI(nsec) = 10^6 / bitrate
|
|
|
|
* DDR clock period (nsec) = 2 * UI = (2 * 10^6)/ bitrate
|
|
|
|
* DDR clock count = ns_value / DDR clock period
|
|
|
|
*
|
|
|
|
* For GEMINILAKE dphy_param_reg will be programmed in terms of
|
|
|
|
* HS byte clock count for other platform in HS ddr clock count
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
mul = display->platform.geminilake ? 8 : 2;
|
2019-06-05 20:17:34 +02:00
|
|
|
ths_prepare_ns = max(mipi_config->ths_prepare,
|
|
|
|
mipi_config->tclk_prepare);
|
|
|
|
|
|
|
|
/* prepare count */
|
|
|
|
prepare_cnt = DIV_ROUND_UP(ths_prepare_ns * ui_den, ui_num * mul);
|
|
|
|
|
|
|
|
if (prepare_cnt > PREPARE_CNT_MAX) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "prepare count too high %u\n",
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
prepare_cnt);
|
2019-06-05 20:17:34 +02:00
|
|
|
prepare_cnt = PREPARE_CNT_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exit zero count */
|
|
|
|
exit_zero_cnt = DIV_ROUND_UP(
|
|
|
|
(ths_prepare_hszero - ths_prepare_ns) * ui_den,
|
|
|
|
ui_num * mul
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Exit zero is unified val ths_zero and ths_exit
|
|
|
|
* minimum value for ths_exit = 110ns
|
|
|
|
* min (exit_zero_cnt * 2) = 110/UI
|
|
|
|
* exit_zero_cnt = 55/UI
|
|
|
|
*/
|
|
|
|
if (exit_zero_cnt < (55 * ui_den / ui_num) && (55 * ui_den) % ui_num)
|
|
|
|
exit_zero_cnt += 1;
|
|
|
|
|
|
|
|
if (exit_zero_cnt > EXIT_ZERO_CNT_MAX) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "exit zero count too high %u\n",
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
exit_zero_cnt);
|
2019-06-05 20:17:34 +02:00
|
|
|
exit_zero_cnt = EXIT_ZERO_CNT_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clk zero count */
|
|
|
|
clk_zero_cnt = DIV_ROUND_UP(
|
|
|
|
(tclk_prepare_clkzero - ths_prepare_ns)
|
|
|
|
* ui_den, ui_num * mul);
|
|
|
|
|
|
|
|
if (clk_zero_cnt > CLK_ZERO_CNT_MAX) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "clock zero count too high %u\n",
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
clk_zero_cnt);
|
2019-06-05 20:17:34 +02:00
|
|
|
clk_zero_cnt = CLK_ZERO_CNT_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* trail count */
|
|
|
|
tclk_trail_ns = max(mipi_config->tclk_trail, mipi_config->ths_trail);
|
|
|
|
trail_cnt = DIV_ROUND_UP(tclk_trail_ns * ui_den, ui_num * mul);
|
|
|
|
|
|
|
|
if (trail_cnt > TRAIL_CNT_MAX) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "trail count too high %u\n",
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
trail_cnt);
|
2019-06-05 20:17:34 +02:00
|
|
|
trail_cnt = TRAIL_CNT_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* B080 */
|
|
|
|
intel_dsi->dphy_reg = exit_zero_cnt << 24 | trail_cnt << 16 |
|
|
|
|
clk_zero_cnt << 8 | prepare_cnt;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LP to HS switch count = 4TLPX + PREP_COUNT * mul + EXIT_ZERO_COUNT *
|
|
|
|
* mul + 10UI + Extra Byte Count
|
|
|
|
*
|
|
|
|
* HS to LP switch count = THS-TRAIL + 2TLPX + Extra Byte Count
|
|
|
|
* Extra Byte Count is calculated according to number of lanes.
|
|
|
|
* High Low Switch Count is the Max of LP to HS and
|
|
|
|
* HS to LP switch count
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
tlpx_ui = DIV_ROUND_UP(tlpx_ns * ui_den, ui_num);
|
|
|
|
|
|
|
|
/* B044 */
|
|
|
|
/* FIXME:
|
|
|
|
* The comment above does not match with the code */
|
|
|
|
lp_to_hs_switch = DIV_ROUND_UP(4 * tlpx_ui + prepare_cnt * mul +
|
|
|
|
exit_zero_cnt * mul + 10, 8);
|
|
|
|
|
|
|
|
hs_to_lp_switch = DIV_ROUND_UP(mipi_config->ths_trail + 2 * tlpx_ui, 8);
|
|
|
|
|
|
|
|
intel_dsi->hs_to_lp_count = max(lp_to_hs_switch, hs_to_lp_switch);
|
|
|
|
intel_dsi->hs_to_lp_count += extra_byte_count;
|
|
|
|
|
|
|
|
/* B088 */
|
|
|
|
/* LP -> HS for clock lanes
|
|
|
|
* LP clk sync + LP11 + LP01 + tclk_prepare + tclk_zero +
|
|
|
|
* extra byte count
|
|
|
|
* 2TPLX + 1TLPX + 1 TPLX(in ns) + prepare_cnt * 2 + clk_zero_cnt *
|
|
|
|
* 2(in UI) + extra byte count
|
|
|
|
* In byteclks = (4TLPX + prepare_cnt * 2 + clk_zero_cnt *2 (in UI)) /
|
|
|
|
* 8 + extra byte count
|
|
|
|
*/
|
|
|
|
intel_dsi->clk_lp_to_hs_count =
|
|
|
|
DIV_ROUND_UP(
|
|
|
|
4 * tlpx_ui + prepare_cnt * 2 +
|
|
|
|
clk_zero_cnt * 2,
|
|
|
|
8);
|
|
|
|
|
|
|
|
intel_dsi->clk_lp_to_hs_count += extra_byte_count;
|
|
|
|
|
|
|
|
/* HS->LP for Clock Lanes
|
|
|
|
* Low Power clock synchronisations + 1Tx byteclk + tclk_trail +
|
|
|
|
* Extra byte count
|
|
|
|
* 2TLPX + 8UI + (trail_count*2)(in UI) + Extra byte count
|
|
|
|
* In byteclks = (2*TLpx(in UI) + trail_count*2 +8)(in UI)/8 +
|
|
|
|
* Extra byte count
|
|
|
|
*/
|
|
|
|
intel_dsi->clk_hs_to_lp_count =
|
|
|
|
DIV_ROUND_UP(2 * tlpx_ui + trail_cnt * 2 + 8,
|
|
|
|
8);
|
|
|
|
intel_dsi->clk_hs_to_lp_count += extra_byte_count;
|
|
|
|
|
|
|
|
intel_dsi_log_params(intel_dsi);
|
|
|
|
}
|
|
|
|
|
2024-10-29 23:52:12 +02:00
|
|
|
int vlv_dsi_min_cdclk(const struct intel_crtc_state *crtc_state)
|
|
|
|
{
|
2025-03-21 12:52:45 +02:00
|
|
|
struct intel_display *display = to_intel_display(crtc_state);
|
2024-10-29 23:52:13 +02:00
|
|
|
|
|
|
|
if (!intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DSI))
|
|
|
|
return 0;
|
2024-10-29 23:52:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* On Valleyview some DSI panels lose (v|h)sync when the clock is lower
|
|
|
|
* than 320000KHz.
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.valleyview)
|
2024-10-29 23:52:13 +02:00
|
|
|
return 320000;
|
2024-10-29 23:52:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* On Geminilake once the CDCLK gets as low as 79200
|
|
|
|
* picture gets unstable, despite that values are
|
|
|
|
* correct for DSI PLL and DE PLL.
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake)
|
2024-10-29 23:52:13 +02:00
|
|
|
return 158400;
|
2024-10-29 23:52:12 +02:00
|
|
|
|
2024-10-29 23:52:13 +02:00
|
|
|
return 0;
|
2024-10-29 23:52:12 +02:00
|
|
|
}
|
|
|
|
|
2023-09-20 21:56:10 +02:00
|
|
|
typedef void (*vlv_dsi_dmi_quirk_func)(struct intel_dsi *intel_dsi);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vtotal is wrong on the Asus TF103C leading to the last line of the display
|
|
|
|
* being shown as the first line. The factory installed Android has a hardcoded
|
|
|
|
* modeline, causing it to not suffer from this BIOS bug.
|
|
|
|
*
|
|
|
|
* Original mode: "1280x800": 60 67700 1280 1312 1328 1376 800 808 812 820 0x8 0xa
|
|
|
|
* Fixed mode: "1280x800": 60 67700 1280 1312 1328 1376 800 808 812 816 0x8 0xa
|
|
|
|
*
|
|
|
|
* https://gitlab.freedesktop.org/drm/intel/-/issues/9381
|
|
|
|
*/
|
|
|
|
static void vlv_dsi_asus_tf103c_mode_fixup(struct intel_dsi *intel_dsi)
|
|
|
|
{
|
|
|
|
/* Cast away the const as we want to fixup the mode */
|
|
|
|
struct drm_display_mode *fixed_mode = (struct drm_display_mode *)
|
|
|
|
intel_panel_preferred_fixed_mode(intel_dsi->attached_connector);
|
|
|
|
|
|
|
|
if (fixed_mode->vtotal == 820)
|
|
|
|
fixed_mode->vtotal -= 4;
|
|
|
|
}
|
|
|
|
|
2023-09-20 21:56:11 +02:00
|
|
|
/*
|
|
|
|
* On the Lenovo Yoga Tablet 2 830 / 1050 there are 2 problems:
|
|
|
|
* 1. The I2C MIPI sequence elements reference bus 3. ACPI has I2C1 - I2C7
|
|
|
|
* which under Linux become bus 0 - 6. And the MIPI sequence reference
|
|
|
|
* to bus 3 is indented for I2C3 which is bus 2 under Linux.
|
|
|
|
*
|
|
|
|
* Note mipi_exec_i2c() cannot just subtract 1 from the bus
|
|
|
|
* given in the I2C MIPI sequence element. Since on other
|
|
|
|
* devices the I2C bus-numbers used in the MIPI sequences do
|
|
|
|
* actually start at 0.
|
|
|
|
*
|
|
|
|
* 2. width_/height_mm contain a bogus 192mm x 120mm size. This is
|
|
|
|
* especially a problem on the 8" 830 version which uses a 10:16
|
|
|
|
* portrait screen where as the bogus size is 16:10.
|
|
|
|
*
|
|
|
|
* https://gitlab.freedesktop.org/drm/intel/-/issues/9379
|
|
|
|
*/
|
|
|
|
static void vlv_dsi_lenovo_yoga_tab2_size_fixup(struct intel_dsi *intel_dsi)
|
|
|
|
{
|
|
|
|
const struct drm_display_mode *fixed_mode =
|
|
|
|
intel_panel_preferred_fixed_mode(intel_dsi->attached_connector);
|
|
|
|
struct drm_display_info *info = &intel_dsi->attached_connector->base.display_info;
|
|
|
|
|
|
|
|
intel_dsi->i2c_bus_num = 2;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The 10" 1050 uses a 1920x1200 landscape screen, where as the 8" 830
|
|
|
|
* uses a 1200x1920 portrait screen.
|
|
|
|
*/
|
|
|
|
if (fixed_mode->hdisplay == 1920) {
|
|
|
|
info->width_mm = 216;
|
|
|
|
info->height_mm = 135;
|
|
|
|
} else {
|
|
|
|
info->width_mm = 107;
|
|
|
|
info->height_mm = 171;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-20 21:56:12 +02:00
|
|
|
/*
|
|
|
|
* On the Lenovo Yoga Tab 3 Pro YT3-X90F there are 2 problems:
|
|
|
|
* 1. i2c_acpi_find_adapter() picks the wrong adapter causing mipi_exec_i2c()
|
|
|
|
* to not work. Fix this by setting i2c_bus_num.
|
|
|
|
* 2. There is no backlight off MIPI sequence, causing the backlight to stay on.
|
|
|
|
* Add a backlight off sequence mirroring the existing backlight on sequence.
|
|
|
|
*
|
|
|
|
* https://gitlab.freedesktop.org/drm/intel/-/issues/9380
|
|
|
|
*/
|
|
|
|
static void vlv_dsi_lenovo_yoga_tab3_backlight_fixup(struct intel_dsi *intel_dsi)
|
|
|
|
{
|
|
|
|
static const u8 backlight_off_sequence[16] = {
|
|
|
|
/* Header Seq-id 7, length after header 11 bytes */
|
|
|
|
0x07, 0x0b, 0x00, 0x00, 0x00,
|
|
|
|
/* MIPI_SEQ_ELEM_I2C bus 0 addr 0x2c reg 0x00 data-len 1 data 0x00 */
|
|
|
|
0x04, 0x08, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x01, 0x00,
|
|
|
|
/* MIPI_SEQ_ELEM_END */
|
|
|
|
0x00
|
|
|
|
};
|
|
|
|
struct intel_connector *connector = intel_dsi->attached_connector;
|
|
|
|
|
|
|
|
intel_dsi->i2c_bus_num = 0;
|
|
|
|
connector->panel.vbt.dsi.sequence[MIPI_SEQ_BACKLIGHT_OFF] = backlight_off_sequence;
|
|
|
|
}
|
|
|
|
|
2023-09-20 21:56:10 +02:00
|
|
|
static const struct dmi_system_id vlv_dsi_dmi_quirk_table[] = {
|
|
|
|
{
|
|
|
|
/* Asus Transformer Pad TF103C */
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "TF103C"),
|
|
|
|
},
|
|
|
|
.driver_data = (void *)vlv_dsi_asus_tf103c_mode_fixup,
|
|
|
|
},
|
2023-09-20 21:56:11 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Lenovo Yoga Tablet 2 830F/L or 1050F/L (The 8" and 10"
|
|
|
|
* Lenovo Yoga Tablet 2 use the same mainboard)
|
|
|
|
*/
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "Intel Corp."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "VALLEYVIEW C0 PLATFORM"),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "BYT-T FFD8"),
|
|
|
|
/* Partial match on beginning of BIOS version */
|
|
|
|
DMI_MATCH(DMI_BIOS_VERSION, "BLADE_21"),
|
|
|
|
},
|
|
|
|
.driver_data = (void *)vlv_dsi_lenovo_yoga_tab2_size_fixup,
|
|
|
|
},
|
2023-09-20 21:56:12 +02:00
|
|
|
{
|
|
|
|
/* Lenovo Yoga Tab 3 Pro YT3-X90F */
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_VERSION, "Blade3-10A-001"),
|
|
|
|
},
|
|
|
|
.driver_data = (void *)vlv_dsi_lenovo_yoga_tab3_backlight_fixup,
|
|
|
|
},
|
2023-09-20 21:56:10 +02:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
void vlv_dsi_init(struct intel_display *display)
|
2013-08-27 15:12:20 +03:00
|
|
|
{
|
|
|
|
struct intel_dsi *intel_dsi;
|
2024-04-19 13:04:05 +03:00
|
|
|
struct intel_encoder *encoder;
|
|
|
|
struct intel_connector *connector;
|
2022-03-31 14:28:13 +03:00
|
|
|
struct drm_display_mode *current_mode;
|
2023-09-20 21:56:10 +02:00
|
|
|
const struct dmi_system_id *dmi_id;
|
2015-01-16 14:27:23 +02:00
|
|
|
enum port port;
|
2019-12-16 21:51:20 +01:00
|
|
|
enum pipe pipe;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "\n");
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2014-05-27 19:33:59 +05:30
|
|
|
/* There is no detection method for MIPI so rely on VBT */
|
2024-08-09 17:27:06 +03:00
|
|
|
if (!intel_bios_is_dsi_present(display, &port))
|
2014-05-28 12:30:56 +01:00
|
|
|
return;
|
2014-05-27 19:33:59 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton)
|
|
|
|
display->dsi.mmio_base = BXT_MIPI_BASE;
|
2018-07-05 16:25:09 +03:00
|
|
|
else
|
2025-03-21 12:52:45 +02:00
|
|
|
display->dsi.mmio_base = VLV_MIPI_BASE;
|
2014-05-27 19:33:59 +05:30
|
|
|
|
2013-08-27 15:12:20 +03:00
|
|
|
intel_dsi = kzalloc(sizeof(*intel_dsi), GFP_KERNEL);
|
|
|
|
if (!intel_dsi)
|
2014-05-28 12:30:56 +01:00
|
|
|
return;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
connector = intel_connector_alloc();
|
|
|
|
if (!connector) {
|
2013-08-27 15:12:20 +03:00
|
|
|
kfree(intel_dsi);
|
2014-05-28 12:30:56 +01:00
|
|
|
return;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder = &intel_dsi->base;
|
|
|
|
intel_dsi->attached_connector = connector;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_encoder_init(display->drm, &encoder->base, &intel_dsi_funcs,
|
2024-04-19 13:04:05 +03:00
|
|
|
DRM_MODE_ENCODER_DSI, "DSI %c", port_name(port));
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->compute_config = intel_dsi_compute_config;
|
|
|
|
encoder->pre_enable = intel_dsi_pre_enable;
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton)
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->enable = bxt_dsi_enable;
|
|
|
|
encoder->disable = intel_dsi_disable;
|
|
|
|
encoder->post_disable = intel_dsi_post_disable;
|
|
|
|
encoder->get_hw_state = intel_dsi_get_hw_state;
|
|
|
|
encoder->get_config = intel_dsi_get_config;
|
|
|
|
encoder->update_pipe = intel_backlight_update;
|
|
|
|
encoder->shutdown = intel_dsi_shutdown;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
connector->get_hw_state = intel_connector_get_hw_state;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->port = port;
|
|
|
|
encoder->type = INTEL_OUTPUT_DSI;
|
|
|
|
encoder->power_domain = POWER_DOMAIN_PORT_DSI;
|
|
|
|
encoder->cloneable = 0;
|
2017-02-22 08:34:27 +02:00
|
|
|
|
2016-03-18 17:05:44 +02:00
|
|
|
/*
|
|
|
|
* On BYT/CHV, pipe A maps to MIPI DSI port A, pipe B maps to MIPI DSI
|
|
|
|
* port C. BXT isn't limited like this.
|
|
|
|
*/
|
2025-03-21 12:52:45 +02:00
|
|
|
if (display->platform.geminilake || display->platform.broxton)
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->pipe_mask = ~0;
|
2016-03-18 17:05:44 +02:00
|
|
|
else if (port == PORT_A)
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->pipe_mask = BIT(PIPE_A);
|
2016-03-16 12:43:32 +02:00
|
|
|
else
|
2024-04-19 13:04:05 +03:00
|
|
|
encoder->pipe_mask = BIT(PIPE_B);
|
2014-11-14 16:54:21 +02:00
|
|
|
|
2021-03-25 12:48:23 +01:00
|
|
|
intel_dsi->panel_power_off_time = ktime_get_boottime();
|
|
|
|
|
2024-08-09 17:27:06 +03:00
|
|
|
intel_bios_init_panel_late(display, &connector->panel, NULL, NULL);
|
2022-05-10 13:42:39 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
if (connector->panel.vbt.dsi.config->dual_link)
|
2016-03-18 17:05:43 +02:00
|
|
|
intel_dsi->ports = BIT(PORT_A) | BIT(PORT_C);
|
2017-10-13 18:15:00 +05:30
|
|
|
else
|
2016-03-18 17:05:43 +02:00
|
|
|
intel_dsi->ports = BIT(port);
|
2015-08-03 15:45:32 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (drm_WARN_ON(display->drm, connector->panel.vbt.dsi.bl_ports & ~intel_dsi->ports))
|
2024-04-19 13:04:05 +03:00
|
|
|
connector->panel.vbt.dsi.bl_ports &= intel_dsi->ports;
|
2022-08-16 18:37:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
if (drm_WARN_ON(display->drm, connector->panel.vbt.dsi.cabc_ports & ~intel_dsi->ports))
|
2024-04-19 13:04:05 +03:00
|
|
|
connector->panel.vbt.dsi.cabc_ports &= intel_dsi->ports;
|
2022-08-16 18:37:20 +03:00
|
|
|
|
2015-01-16 14:27:23 +02:00
|
|
|
/* Create a DSI host (and a device) for each port. */
|
|
|
|
for_each_dsi_port(port, intel_dsi->ports) {
|
|
|
|
struct intel_dsi_host *host;
|
|
|
|
|
2018-10-30 13:56:07 +02:00
|
|
|
host = intel_dsi_host_init(intel_dsi, &intel_dsi_host_ops,
|
|
|
|
port);
|
2015-01-16 14:27:23 +02:00
|
|
|
if (!host)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
intel_dsi->dsi_hosts[port] = host;
|
|
|
|
}
|
|
|
|
|
2017-03-06 16:31:26 +02:00
|
|
|
if (!intel_dsi_vbt_init(intel_dsi, MIPI_DSI_GENERIC_PANEL_ID)) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "no device found\n");
|
2013-08-27 15:12:20 +03:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2019-06-05 20:17:35 +02:00
|
|
|
/* Use clock read-back from current hw-state for fastboot */
|
2024-04-19 13:04:05 +03:00
|
|
|
current_mode = intel_encoder_current_mode(encoder);
|
2019-06-05 20:17:35 +02:00
|
|
|
if (current_mode) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "Calculated pclk %d GOP %d\n",
|
drm/i915/vlv_dsi: conversion to drm_device based logging macros.
Converts the printk based logging macros to the struct drm_device based
logging macros in i915/display/vlv_dsi.c.
This was done using the following coccinelle script that transforms
based on the existence of a drm_i915_private device pointer.
@@
identifier fn, T;
@@
fn(...) {
...
struct drm_i915_private *T = ...;
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
@@
identifier fn, T;
@@
fn(...,struct drm_i915_private *T,...) {
<+...
(
-DRM_INFO(
+drm_info(&T->drm,
...)
|
-DRM_ERROR(
+drm_err(&T->drm,
...)
|
-DRM_WARN(
+drm_warn(&T->drm,
...)
|
-DRM_DEBUG(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_DRIVER(
+drm_dbg(&T->drm,
...)
|
-DRM_DEBUG_KMS(
+drm_dbg_kms(&T->drm,
...)
|
-DRM_DEBUG_ATOMIC(
+drm_dbg_atomic(&T->drm,
...)
)
...+>
}
Checkpatch warnings were addressed manually.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200130083229.12889-3-wambui.karugax@gmail.com
2020-01-30 11:32:19 +03:00
|
|
|
intel_dsi->pclk, current_mode->clock);
|
2019-06-05 20:17:35 +02:00
|
|
|
if (intel_fuzzy_clock_check(intel_dsi->pclk,
|
|
|
|
current_mode->clock)) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "Using GOP pclk\n");
|
2019-06-05 20:17:35 +02:00
|
|
|
intel_dsi->pclk = current_mode->clock;
|
|
|
|
}
|
|
|
|
|
|
|
|
kfree(current_mode);
|
|
|
|
}
|
|
|
|
|
2019-06-05 20:17:34 +02:00
|
|
|
vlv_dphy_param_init(intel_dsi);
|
|
|
|
|
2019-12-16 21:51:20 +01:00
|
|
|
intel_dsi_vbt_gpio_init(intel_dsi,
|
2024-04-19 13:04:05 +03:00
|
|
|
intel_dsi_get_hw_state(encoder, &pipe));
|
2015-06-26 14:32:09 +05:30
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_connector_init(display->drm, &connector->base, &intel_dsi_connector_funcs,
|
2013-08-27 15:12:20 +03:00
|
|
|
DRM_MODE_CONNECTOR_DSI);
|
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
drm_connector_helper_add(&connector->base, &intel_dsi_connector_helper_funcs);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
connector->base.display_info.subpixel_order = SubPixelHorizontalRGB; /*XXX*/
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
intel_connector_attach_encoder(connector, encoder);
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2025-03-21 12:52:45 +02:00
|
|
|
mutex_lock(&display->drm->mode_config.mutex);
|
2024-04-19 13:04:05 +03:00
|
|
|
intel_panel_add_vbt_lfp_fixed_mode(connector);
|
2025-03-21 12:52:45 +02:00
|
|
|
mutex_unlock(&display->drm->mode_config.mutex);
|
2015-01-23 15:30:56 +02:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
if (!intel_panel_preferred_fixed_mode(connector)) {
|
2025-03-21 12:52:45 +02:00
|
|
|
drm_dbg_kms(display->drm, "no fixed mode\n");
|
2019-05-24 18:35:18 +02:00
|
|
|
goto err_cleanup_connector;
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|
|
|
|
|
2023-09-20 21:56:10 +02:00
|
|
|
dmi_id = dmi_first_match(vlv_dsi_dmi_quirk_table);
|
|
|
|
if (dmi_id) {
|
|
|
|
vlv_dsi_dmi_quirk_func quirk_func =
|
|
|
|
(vlv_dsi_dmi_quirk_func)dmi_id->driver_data;
|
|
|
|
|
|
|
|
quirk_func(intel_dsi);
|
|
|
|
}
|
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
intel_panel_init(connector, NULL);
|
2022-03-31 14:28:13 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
intel_backlight_setup(connector, INVALID_PIPE);
|
2016-04-12 22:14:37 +03:00
|
|
|
|
2024-04-19 13:04:05 +03:00
|
|
|
vlv_dsi_add_properties(connector);
|
2016-04-12 22:14:37 +03:00
|
|
|
|
2014-05-28 12:30:56 +01:00
|
|
|
return;
|
2013-08-27 15:12:20 +03:00
|
|
|
|
2019-05-24 18:35:18 +02:00
|
|
|
err_cleanup_connector:
|
2024-04-19 13:04:05 +03:00
|
|
|
drm_connector_cleanup(&connector->base);
|
2013-08-27 15:12:20 +03:00
|
|
|
err:
|
2024-04-19 13:04:05 +03:00
|
|
|
drm_encoder_cleanup(&encoder->base);
|
2013-08-27 15:12:20 +03:00
|
|
|
kfree(intel_dsi);
|
2024-04-19 13:04:05 +03:00
|
|
|
kfree(connector);
|
2013-08-27 15:12:20 +03:00
|
|
|
}
|